forked from mmorri22/GreatIdeas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
256 lines (166 loc) · 4.71 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# Author: Matthew Morrison
# E-mail: [email protected]
#
# This is the Makefile for Chapter 2 - Into the Void
# G++ is for the GCC compiler for C++
PP := g++
# CFLAGS are the compiler flages for when we compile C code in this course
FLAGS := -O0 -g -Wall
CXXFLAGS := -m64 -std=c++11 $(FLAGS)
# Compilation for the "nothing" program
# Command: make nothing
nothingObjs := nothing.o
nothing: nothing.o
$(PP) $(CXXFLAGS) -o nothing $(nothingObjs)
./nothing
nothing.o: nothing.cpp
$(PP) $(CXXFLAGS) -c nothing.cpp
# C++ Hello, World Example
# Command: make hello
helloObjs := hello.o
hello: hello.o
$(PP) $(CXXFLAGS) -o hello $(helloObjs)
./hello
hello.o: hello.cpp
$(PP) $(CXXFLAGS) -c hello.cpp
# C++ void1, World Example
# Command: make void1
void1Objs := void1.o
void1: void1.o
$(PP) $(CXXFLAGS) -o void1 $(void1Objs)
./void1
void1.o: void1.cpp
$(PP) $(CXXFLAGS) -c void1.cpp
# C++ void2, World Example
# Command: make void2
void2Objs := void2.o
void2: void2.o
$(PP) $(CXXFLAGS) -o void2 $(void2Objs)
./void2
void2.o: void2.cpp
$(PP) $(CXXFLAGS) -c void2.cpp
# C++ void3, World Example
# Command: make void3
void3Objs := void3.o
void3: void3.o
$(PP) $(CXXFLAGS) -o void3 $(void3Objs)
./void3
void3.o: void3.cpp
$(PP) $(CXXFLAGS) -c void3.cpp
# C++ void4, World Example
# Command: make void4
void4Objs := void4.o
void4: void4.o
$(PP) $(CXXFLAGS) -o void4 $(void4Objs)
./void4
void4.o: void4.cpp
$(PP) $(CXXFLAGS) -c void4.cpp
# C++ helloVoid, World Example
# Command: make helloVoid
helloVoidObjs := helloVoid.o
helloVoid: helloVoid.o
$(PP) $(CXXFLAGS) -o helloVoid $(helloVoidObjs)
./helloVoid
helloVoid.o: helloVoid.cpp
$(PP) $(CXXFLAGS) -c helloVoid.cpp
# C++ char1, World Example
# Command: make char1
char1Objs := char1.o
char1: char1.o
$(PP) $(CXXFLAGS) -o char1 $(char1Objs)
./char1
char1.o: char1.cpp
$(PP) $(CXXFLAGS) -c char1.cpp
# C++ char2, World Example
# Command: make char2
char2Objs := char2.o
char2: char2.o
$(PP) $(CXXFLAGS) -o char2 $(char2Objs)
./char2
char2.o: char2.cpp
$(PP) $(CXXFLAGS) -c char2.cpp
# C++ char3, World Example
# Command: make char3
char3Objs := char3.o
char3: char3.o
$(PP) $(CXXFLAGS) -o char3 $(char3Objs)
./char3
char3.o: char3.cpp
$(PP) $(CXXFLAGS) -c char3.cpp
# C++ char4, World Example
# Command: make char4
char4Objs := char4.o
char4: char4.o
$(PP) $(CXXFLAGS) -o char4 $(char4Objs)
./char4
char4.o: char4.cpp
$(PP) $(CXXFLAGS) -c char4.cpp
# C++ helloChar, World Example
# Command: make helloChar
helloCharObjs := helloChar.o
helloChar: helloChar.o
$(PP) $(CXXFLAGS) -o helloChar $(helloCharObjs)
./helloChar
helloChar.o: helloChar.cpp
$(PP) $(CXXFLAGS) -c helloChar.cpp
# C++ array1, World Example
# Command: make array1
array1Objs := array1.o
array1: array1.o
$(PP) $(CXXFLAGS) -o array1 $(array1Objs)
./array1
array1.o: array1.cpp
$(PP) $(CXXFLAGS) -c array1.cpp
# C++ array2, World Example
# Command: make array2
array2Objs := array2.o
array2: array2.o
$(PP) $(CXXFLAGS) -o array2 $(array2Objs)
./array2
array2.o: array2.cpp
$(PP) $(CXXFLAGS) -c array2.cpp
# C++ array3, World Example
# Command: make array3
array3Objs := array3.o
array3: array3.o
$(PP) $(CXXFLAGS) -o array3 $(array3Objs)
./array3
array3.o: array3.cpp
$(PP) $(CXXFLAGS) -c array3.cpp
# C++ array4, World Example
# Command: make array4
array4Objs := array4.o
array4: array4.o
$(PP) $(CXXFLAGS) -o array4 $(array4Objs)
./array4
array4.o: array4.cpp
$(PP) $(CXXFLAGS) -c array4.cpp
# C++ helloArray, World Example
# Command: make helloArray
helloArrayObjs := helloArray.o
helloArray: helloArray.o
$(PP) $(CXXFLAGS) -o helloArray $(helloArrayObjs)
./helloArray
helloArray.o: helloArray.cpp
$(PP) $(CXXFLAGS) -c helloArray.cpp
# C++ helloArray2, World Example
# Command: make helloArray2
helloArray2Objs := helloArray2.o
helloArray2: helloArray2.o
$(PP) $(CXXFLAGS) -o helloArray2 $(helloArray2Objs)
./helloArray2
helloArray2.o: helloArray2.cpp
$(PP) $(CXXFLAGS) -c helloArray2.cpp
# C++ helloArray3, World Example
# Command: make helloArray3
helloArray3Objs := helloArray3.o
helloArray3: helloArray3.o
$(PP) $(CXXFLAGS) -o helloArray3 $(helloArray3Objs)
./helloArray3
helloArray3.o: helloArray3.cpp
$(PP) $(CXXFLAGS) -c helloArray3.cpp
# Make all
all: nothing hello ascii squareFunc
# Make clean
clean :
rm -rf *.o nothing hello void1 void2 void3 void4 helloVoid char1 char2 char3 char4 helloChar array1 array2 array3 array4 helloArray helloArray2 helloArray3