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

From ZCubes Wiki
Jump to navigation Jump to search
 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	gcc 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.c \
19         parameters.h \
20         common.h \
21         f_specs.h
22
23	gcc -c a_09.c
24
25get_filename.o : get_filename.c \
26                 common.h \
27                 io.h
28
29	gcc -c get_filename.c
30
31get_data.o : get_data.c \
32             common.h \
33             io.h
34
35	gcc -c get_data.c
36
37replace_with_upper.o : replace_with_upper.c \
38                       common.h
39
40	gcc -c replace_with_upper.c
41
42to_upper.o : to_upper.c \
43             common.h
44
45	gcc -c to_upper.c
46
47print_animals.o : print_animals.c \
48                  common.h \
49                  io.h
50
51	gcc -c print_animals.c
52
53get_char.o : get_char.c \
54             io.h
55
56	gcc -c get_char.c