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

From ZCubes Wiki
Revision as of 23:30, 6 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">students_00: students_00.o \ students_process.o \ Student.o \ Courses.o \ ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1students_00: students_00.o \
 2             students_process.o \
 3             Student.o \
 4             Courses.o \
 5             Person.o
 6
 7	g++ students_00.o \
 8            students_process.o \
 9            Student.o \
10            Courses.o \
11            Person.o \
12         -o students_00
13
14students_00.o: students_00.cpp \
15               students_process.h \
16               Student.h \
17               common.h
18
19	g++ -c students_00.cpp
20
21students_process.o: students_process.cpp \
22                    students_process.h \
23                    Student.h \
24                    common.h
25
26	g++ -c students_process.cpp
27
28Student.o: Student.cpp \
29           Student.h
30
31	g++ -c Student.cpp
32
33Courses.o: Courses.cpp \
34           Courses.h
35
36	g++ -c Courses.cpp
37
38Person.o: Person.cpp \
39          Person.h
40
41	g++ -c Person.cpp