Yurttas/PL/OOL/Cplusplus/F/07/02/02/00/make.s 00

From ZCubes Wiki
Jump to navigation Jump to search
 1s_00 : s_00.o \
 2       get_vector_lines.o \
 3       count_pattern.o \
 4       put_count.o
 5
 6	g++ s_00.o \
 7            get_vector_lines.o \
 8            count_pattern.o \
 9            put_count.o \
10         -o s_00
11
12s_00.o : s_00.cpp f_specs.h
13
14	g++ -c s_00.cpp
15
16get_vector_lines.o : get_vector_lines.cpp \
17                     common.h \
18                     io.h
19
20	g++ -c get_vector_lines.cpp
21
22count_pattern.o : count_pattern.cpp \
23                  common.h
24
25	g++ -c count_pattern.cpp
26
27put_count.o : put_count.cpp \
28              common.h \
29              io.h
30
31	g++ -c put_count.cpp