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

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