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

From ZCubes Wiki
Revision as of 00:03, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">s_00 : s_00.o \ get_vector_lines.o \ count_pattern.o \ put_count.o g++ s_00.o \ ge...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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