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

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_01 : exception_01.o \ Thrower.o \ g++ exception_01.o \ Thrower.o \ -o...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1exception_01 : exception_01.o \
 2               Thrower.o \
 3
 4	g++ exception_01.o \
 5            Thrower.o \
 6         -o exception_01
 7
 8exception_01.o : exception_01.cpp \
 9                 Thrower.h
10
11	g++ -c exception_01.cpp
12
13Thrower.o : Thrower.cpp \
14            Thrower.h
15
16	g++ -c Thrower.cpp