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

Revision as of 10:30, 5 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">a_06 : a_06.o \ init.o \ replace_with_upper.o \ to_upper.o \ print_animals.o gcc a_06.o...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1a_06 : a_06.o \
 2       init.o \
 3       replace_with_upper.o \
 4       to_upper.o \
 5       print_animals.o
 6
 7	gcc a_06.o \
 8            init.o \
 9            replace_with_upper.o \
10            to_upper.o \
11            print_animals.o \
12         -o a_06
13
14a_06.o : a_06.c
15
16	gcc -c a_06.c
17
18init.o : init.c
19
20	gcc -c init.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