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

From ZCubes Wiki
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