Yurttas/PL/OOL/Cplusplus/F/02/06/03/make.exception 02

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