Yurttas/PL/OOL/Cplusplus/F/03/02/03/01/make.matrix 00

From ZCubes Wiki
Revision as of 23:14, 6 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">matrix_00 : matrix_00.o \ matrix.o g++ matrix_00.o \ matrix.o \ -o matrix_00 matr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1matrix_00 : matrix_00.o \
 2            matrix.o
 3
 4	g++ matrix_00.o \
 5            matrix.o \
 6         -o matrix_00
 7
 8matrix_00.o : matrix_00.cpp \
 9              matrix.h
10
11	g++ -c matrix_00.cpp
12
13matrix.o : matrix.cpp \
14           matrix.h
15
16	g++ -c matrix.cpp