Yurttas/PL/OOL/Cplusplus/F/04/03/00/make.vector e 03

Revision as of 23:33, 6 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">vector_e_03 : vector_e_03.o \ vector_e.o \ t_03.o g++ -Wno-non-template-friend vector_e...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1vector_e_03 : vector_e_03.o \
 2              vector_e.o \
 3              t_03.o
 4
 5	g++ -Wno-non-template-friend vector_e_03.o \
 6                                     vector_e.o \
 7                                     t_03.o \
 8                                  -o vector_e_03
 9
10vector_e_03.o : vector_e_03.cpp \
11                vector_e.cpp
12
13	g++ -c -Wno-non-template-friend vector_e_03.cpp
14
15t_03.o : t_03.cpp \
16         vector_e.cpp
17
18	g++ -c -Wno-non-template-friend t_03.cpp
19
20vector_e.o : vector_e.cpp \
21             vector_e.h
22
23	g++ -c -Wno-non-template-friend vector_e.cpp