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

From ZCubes Wiki
Jump to navigation Jump to search
 1s_00 : s_00.o \
 2       get_string.o \
 3       put_string.o
 4
 5	g++ s_00.o \
 6            get_string.o \
 7            put_string.o \
 8         -o s_00
 9
10s_00.o : s_00.cpp
11	g++ -c s_00.cpp
12
13get_string.o : get_string.cpp
14	g++ -c get_string.cpp
15
16put_string.o : put_string.cpp
17	g++ -c put_string.cpp