Yurttas/PL/OOL/CS/F/02/05/10/00/03/make.a 10

Revision as of 07:28, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">a_10 : a_10.o \ get_filename.o \ get_data.o \ replace_with_upper.o \ to_upper.o \ ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1a_10 : a_10.o \
 2       get_filename.o \
 3       get_data.o \
 4       replace_with_upper.o \
 5       to_upper.o \
 6       print_animals.o \
 7       get_char.o
 8
 9	g++ a_10.o \
10            get_filename.o \
11            get_data.o \
12            replace_with_upper.o \
13            to_upper.o \
14            print_animals.o \
15            get_char.o \
16         -o a_10
17
18a_10.o : a_10.cpp \
19         parameters.h \
20         common.h \
21         f_specs.h
22
23	g++ -c a_10.cpp
24
25get_filename.o : get_filename.cpp \
26                 common.h \
27                 io.h
28
29	g++ -c get_filename.cpp
30
31get_data.o : get_data.cpp \
32             common.h \
33             io.h
34
35	g++ -c get_data.cpp
36
37replace_with_upper.o : replace_with_upper.cpp \
38                       common.h
39
40	g++ -c replace_with_upper.cpp
41
42to_upper.o : to_upper.cpp \
43             common.h
44
45	g++ -c to_upper.cpp
46
47print_animals.o : print_animals.cpp \
48                  common.h \
49                  io.h
50
51	g++ -c print_animals.cpp
52
53get_char.o : get_char.cpp \
54             common.h \
55             io.h
56
57	g++ -c get_char.cpp