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

 1a_09 : a_09.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_09.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_09
17
18a_09.o : a_09.cpp
19
20	g++ -c a_09.cpp
21
22get_filename.o : get_filename.cpp
23
24	g++ -c get_filename.cpp
25
26get_data.o : get_data.cpp
27
28	g++ -c get_data.cpp
29
30replace_with_upper.o : replace_with_upper.cpp
31
32	g++ -c replace_with_upper.cpp
33
34to_upper.o : to_upper.cpp
35
36	g++ -c to_upper.cpp
37
38print_animals.o : print_animals.cpp
39
40	g++ -c print_animals.cpp
41
42get_char.o : get_char.cpp
43
44	g++ -c get_char.cpp