Yurttas/PL/OOL/Cplusplus/F/02/06/05/make.exception 00

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