Yurttas/PL/OOL/Cplusplus/F/07/06/02/01/00/make.integrate 00

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