Yurttas/PL/OOL/Cplusplus/F/03/02/03/00/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