Yurttas/PL/OOL/Cplusplus/F/03/02/02/00/04/make.v 00

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