Yurttas/PL/IL/C/F-mar11/01/02/00/07/make.a 07

Revision as of 10:31, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">a_07 : a_07.o \ get_data.o \ replace_with_upper.o \ to_upper.o \ print_animals.o gcc a_...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1a_07 : a_07.o \
 2       get_data.o \
 3       replace_with_upper.o \
 4       to_upper.o \
 5       print_animals.o
 6
 7	gcc a_07.o \
 8            get_data.o \
 9            replace_with_upper.o \
10            to_upper.o \
11            print_animals.o \
12         -o a_07
13
14a_07.o : a_07.c
15
16	gcc -c a_07.c
17
18get_data.o : get_data.c
19
20	gcc -c get_data.c
21
22replace_with_upper.o : replace_with_upper.c
23
24	gcc -c replace_with_upper.c
25
26to_upper.o : to_upper.c
27
28	gcc -c to_upper.c
29
30print_animals.o : print_animals.c
31
32	gcc -c print_animals.c