Yurttas/PL/OOL/Cplusplus/F/07/06/01/00/make.m 00

From ZCubes Wiki
Jump to navigation Jump to search
 1m_00 : m_00.o \
 2       get_vector_item.o \
 3       f_a.o \
 4       put_vector_item.o
 5
 6	g++ m_00.o \
 7            get_vector_item.o \
 8            f_a.o \
 9            put_vector_item.o \
10         -o m_00
11
12m_00.o : m_00.cpp \
13         m.h
14
15	g++ -ansi -c m_00.cpp
16
17get_vector_item.o : get_vector_item.cpp \
18                    get_put_vector_item.h
19
20	g++ -ansi -c get_vector_item.cpp
21
22f_a.o : f_a.cpp
23
24	g++ -ansi -c f_a.cpp
25
26put_vector_item.o : put_vector_item.cpp  \
27                    get_put_vector_item.h
28
29	g++ -ansi -c put_vector_item.cpp