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

Revision as of 19:49, 6 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">m_00 : m_00.o \ get_vector_item.o \ f_a.o \ put_vector_item.o g++ m_00.o \ get_vec...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 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