-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
463 lines (438 loc) · 23.3 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
#######################################################################
#
# This makefile ripped from Robert Ohannessian's Speed Hack 2006 entry
# and tweaked for my own use. I added a depend target to create/update
# dependencies (had to use a dirty sed hack, unfortunately, not being
# a makefile expert).
#
# -- Adam DiCarlo
#
# Instructions:
#
# make
# Compiles all .c and .cpp files in the src directory to .o
# files in the obj directory, and links them into an
# executable named 'game' or 'game.exe' in the currect directory.
#
# make clean
# Removes all .o files from the obj directory.
#
# make veryclean
# Removes all .o files and the game executable.
#
# Optional parameters:
#
# STATICLINK=1
# Compiles/removes a statically linked version of the game without
# DLL dependencies. The static object files are put in obj/static
# and the executable has '_static' appended to the name.
#
# RELEASE=1 *new* *new*
# Turns off debugging.
#
# NAME=game_name
# Sets the name of the game executable. By default the game
# executable is called 'game' or 'game.exe'.
#
# If you use add-on libraries, add them to the lines starting with
# 'LIBS='. Make sure you enter the libraries in both lines, for the
# normal and static version!
#
#######################################################################
CC = gcc
CXX = g++
LD = g++
ifdef RELEASE
CFLAGS = -Iinclude -I`freetype-config --prefix`/include/freetype2 -O3 -s -W -Wall
else
CFLAGS = -Iinclude -I`freetype-config --prefix`/include/freetype2 -ggdb -W -Wall
endif
# Add-on libraries go here
ifdef STATICLINK
LIBS = -laldmb_s -ldumb_s
else
LIBS = -laldmb -ldumb
endif
LIBS += -Llib -lbox2d
# Cygwin should build as mingw
ifneq ($(strip $(shell $(CC) -v 2>&1 | grep "cygwin")),)
CC := $(CC) -mno-cygwin
CXX := $(CXX) -mno-cygwin
LD := $(LD) -mno-cygwin
endif
ifndef NAME
NAME = game
endif
ifndef WINDOWS
ifdef MINGDIR
WINDOWS = 1
endif
endif
ifdef WINDOWS
RM = del /q
CFLAGS += -D__GTHREAD_HIDE_WIN32API
LFLAGS = -Wl,--subsystem,windows
ifdef STATICLINK
CFLAGS += -DSTATICLINK
LIBS += -lalleg_s -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lole32 -ldinput -lddraw -ldxguid -lwinmm -ldsound
OBJDIR = obj/static
BIN = $(NAME)_static.exe
else
LIBS += -lalleg
OBJDIR = obj
BIN = $(NAME).exe
endif
LIBS += `openlayer-config --libs`
else
RM = rm -f
ifdef STATICLINK
LIBS += `allegro-config --libs --static` -lXrender
OBJDIR = obj/static
BIN = $(NAME)_static
else
LIBS += `allegro-config --libs`
OBJDIR = obj
BIN = $(NAME)
endif
# AGL needs a few more libs
LIBS += `openlayer-config --libs`
endif
SRCS := $(wildcard src/*.cpp)
OBJ_CPP := $(addprefix $(OBJDIR)/, $(subst src/,,$(patsubst %.cpp,%.o,$(wildcard src/*.cpp))))
OBJ_C := $(addprefix $(OBJDIR)/, $(subst src/,,$(patsubst %.c,%.o,$(wildcard src/*.c))))
all: game
$(OBJDIR)/%.o: src/%.c
$(CC) $(CFLAGS) -o $@ -c $<
$(OBJDIR)/%.o: src/%.cpp
$(CXX) $(CFLAGS) -o $@ -c $<
game: $(OBJ_C) $(OBJ_CPP)
$(LD) -o $(BIN) $(OBJ_C) $(OBJ_CPP) $(LIBS) $(LFLAGS)
clean:
ifdef WINDOWS
ifneq ($(OBJ_C),)
-$(RM) $(subst /,\,$(OBJ_C))
endif
ifneq ($(OBJ_CPP),)
-$(RM) $(subst /,\,$(OBJ_CPP))
endif
else
ifneq ($(OBJ_C),)
-$(RM) $(OBJ_C)
endif
ifneq ($(OBJ_CPP),)
-$(RM) $(OBJ_CPP)
endif
endif
veryclean: clean
-$(RM) $(BIN)
# uses sed to fix up all the dependencies makedepend puts in
depend:
-makedepend -- $(CFLAGS) -- $(SRCS)
sed "s/^src\/\(.*\.o\)/$(OBJDIR)\/\1/" Makefile > Makefile.new
mv Makefile Makefile.makedepend
mv Makefile.new Makefile
# DO NOT DELETE THIS LINE -- make depend depends on it.
obj/display.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/display.o: /usr/include/math.h /usr/include/features.h
obj/display.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/display.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/display.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/display.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/display.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/display.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/display.o: /usr/include/time.h /usr/include/endian.h
obj/display.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/display.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/display.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/display.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/display.o: include/counted_ptr.hpp include/display.hpp include/layer.hpp
obj/display.o: include/fixed-array.hpp include/image.hpp include/system.hpp
obj/display.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/display.o: include/peterson-mutex.hpp include/input-event.hpp
obj/entity.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/entity.o: /usr/include/math.h /usr/include/features.h
obj/entity.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/entity.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/entity.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/entity.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/entity.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/entity.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/entity.o: /usr/include/time.h /usr/include/endian.h
obj/entity.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/entity.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/entity.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/entity.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/entity.o: include/counted_ptr.hpp include/entity.hpp include/Box2D/Body.h
obj/entity.o: include/Box2D/MathUtils.h include/system.hpp
obj/entity.o: include/display.hpp include/layer.hpp include/fixed-array.hpp
obj/entity.o: include/image.hpp include/input.hpp include/event.hpp
obj/entity.o: include/input-device.hpp include/peterson-mutex.hpp
obj/entity.o: include/input-event.hpp
obj/event.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/event.o: /usr/include/math.h /usr/include/features.h
obj/event.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/event.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/event.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/event.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/event.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/event.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/event.o: /usr/include/time.h /usr/include/endian.h
obj/event.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/event.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/event.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/event.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/event.o: include/counted_ptr.hpp include/system.hpp include/display.hpp
obj/event.o: include/layer.hpp include/fixed-array.hpp include/image.hpp
obj/event.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/event.o: include/peterson-mutex.hpp include/input-event.hpp
obj/game.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/game.o: /usr/include/math.h /usr/include/features.h
obj/game.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/game.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/game.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/game.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/game.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/game.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/game.o: /usr/include/time.h /usr/include/endian.h
obj/game.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/game.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/game.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/game.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/game.o: include/counted_ptr.hpp include/system.hpp include/display.hpp
obj/game.o: include/layer.hpp include/fixed-array.hpp include/image.hpp
obj/game.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/game.o: include/peterson-mutex.hpp include/input-event.hpp
obj/game.o: include/game.hpp include/scheduler.hpp include/process.hpp
obj/game.o: include/game-world.hpp include/Box2D/World.h
obj/game.o: include/Box2D/MathUtils.h include/Box2D/Arbiter.h
obj/game.o: include/entity.hpp include/Box2D/Body.h include/goal.hpp
obj/game.o: include/wall.hpp include/game-view.hpp
obj/game-view.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/game-view.o: /usr/include/math.h /usr/include/features.h
obj/game-view.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/game-view.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/game-view.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/game-view.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/game-view.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/game-view.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/game-view.o: /usr/include/time.h /usr/include/endian.h
obj/game-view.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/game-view.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/game-view.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/game-view.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/game-view.o: include/counted_ptr.hpp include/scheduler.hpp
obj/game-view.o: include/process.hpp include/commands.hpp
obj/game-view.o: include/game-view.hpp include/input.hpp include/event.hpp
obj/game-view.o: include/input-device.hpp include/peterson-mutex.hpp
obj/game-view.o: include/input-event.hpp include/game-world.hpp
obj/game-view.o: include/Box2D/World.h include/Box2D/MathUtils.h
obj/game-view.o: include/Box2D/Arbiter.h include/entity.hpp
obj/game-view.o: include/Box2D/Body.h include/goal.hpp include/wall.hpp
obj/game-view.o: include/system.hpp include/display.hpp include/layer.hpp
obj/game-view.o: include/fixed-array.hpp include/image.hpp
obj/game-world.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/game-world.o: /usr/include/math.h /usr/include/features.h
obj/game-world.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/game-world.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/game-world.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/game-world.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/game-world.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/game-world.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/game-world.o: /usr/include/time.h /usr/include/endian.h
obj/game-world.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/game-world.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/game-world.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/game-world.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/game-world.o: include/counted_ptr.hpp include/system.hpp
obj/game-world.o: include/display.hpp include/layer.hpp
obj/game-world.o: include/fixed-array.hpp include/image.hpp include/input.hpp
obj/game-world.o: include/event.hpp include/input-device.hpp
obj/game-world.o: include/peterson-mutex.hpp include/input-event.hpp
obj/game-world.o: include/entity.hpp include/Box2D/Body.h
obj/game-world.o: include/Box2D/MathUtils.h include/goal.hpp
obj/game-world.o: include/eball.hpp include/game-world.hpp
obj/game-world.o: include/Box2D/World.h include/Box2D/Arbiter.h
obj/game-world.o: include/scheduler.hpp include/process.hpp include/wall.hpp
obj/game-world.o: include/ecat.hpp include/commands.hpp include/ebukkit.hpp
obj/game-world.o: include/emat.hpp include/epusher.hpp include/ewalrus.hpp
obj/game-world.o: include/walrus-generator.hpp
obj/goal.o: include/goal.hpp include/basictypes.hpp include/Box2D/MathUtils.h
obj/goal.o: /usr/include/math.h /usr/include/features.h
obj/goal.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/goal.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/goal.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/goal.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/goal.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/goal.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/goal.o: /usr/include/time.h /usr/include/endian.h
obj/goal.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/goal.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/goal.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/goal.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/goal.o: include/counted_ptr.hpp include/display.hpp include/layer.hpp
obj/goal.o: include/fixed-array.hpp include/image.hpp include/system.hpp
obj/goal.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/goal.o: include/peterson-mutex.hpp include/input-event.hpp
obj/image.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/image.o: /usr/include/math.h /usr/include/features.h
obj/image.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/image.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/image.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/image.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/image.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/image.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/image.o: /usr/include/time.h /usr/include/endian.h
obj/image.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/image.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/image.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/image.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/image.o: include/counted_ptr.hpp include/display.hpp include/layer.hpp
obj/image.o: include/fixed-array.hpp include/image.hpp include/system.hpp
obj/image.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/image.o: include/peterson-mutex.hpp include/input-event.hpp
obj/input.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/input.o: /usr/include/math.h /usr/include/features.h
obj/input.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/input.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/input.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/input.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/input.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/input.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/input.o: /usr/include/time.h /usr/include/endian.h
obj/input.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/input.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/input.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/input.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/input.o: include/counted_ptr.hpp include/input.hpp include/event.hpp
obj/input.o: include/input-device.hpp include/peterson-mutex.hpp
obj/input.o: include/input-event.hpp include/system.hpp include/display.hpp
obj/input.o: include/layer.hpp include/fixed-array.hpp include/image.hpp
obj/input-device.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/input-device.o: /usr/include/math.h /usr/include/features.h
obj/input-device.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/input-device.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/input-device.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/input-device.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/input-device.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/input-device.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/input-device.o: /usr/include/time.h /usr/include/endian.h
obj/input-device.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/input-device.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/input-device.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/input-device.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/input-device.o: include/counted_ptr.hpp include/input.hpp
obj/input-device.o: include/event.hpp include/input-device.hpp
obj/input-device.o: include/peterson-mutex.hpp include/input-event.hpp
obj/input-device.o: include/system.hpp include/display.hpp include/layer.hpp
obj/input-device.o: include/fixed-array.hpp include/image.hpp
obj/layer.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/layer.o: /usr/include/math.h /usr/include/features.h
obj/layer.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/layer.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/layer.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/layer.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/layer.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/layer.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/layer.o: /usr/include/time.h /usr/include/endian.h
obj/layer.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/layer.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/layer.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/layer.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/layer.o: include/counted_ptr.hpp include/display.hpp include/layer.hpp
obj/layer.o: include/fixed-array.hpp include/image.hpp include/system.hpp
obj/layer.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/layer.o: include/peterson-mutex.hpp include/input-event.hpp
obj/main.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/main.o: /usr/include/math.h /usr/include/features.h
obj/main.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/main.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/main.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/main.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/main.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/main.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/main.o: /usr/include/time.h /usr/include/endian.h
obj/main.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/main.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/main.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/main.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/main.o: include/counted_ptr.hpp include/system.hpp include/display.hpp
obj/main.o: include/layer.hpp include/fixed-array.hpp include/image.hpp
obj/main.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/main.o: include/peterson-mutex.hpp include/input-event.hpp
obj/peterson-mutex.o: include/peterson-mutex.hpp include/basictypes.hpp
obj/peterson-mutex.o: include/Box2D/MathUtils.h /usr/include/math.h
obj/peterson-mutex.o: /usr/include/features.h /usr/include/sys/cdefs.h
obj/peterson-mutex.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
obj/peterson-mutex.o: /usr/include/gnu/stubs-64.h
obj/peterson-mutex.o: /usr/include/bits/huge_val.h
obj/peterson-mutex.o: /usr/include/bits/mathdef.h
obj/peterson-mutex.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/peterson-mutex.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/peterson-mutex.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/peterson-mutex.o: /usr/include/time.h /usr/include/endian.h
obj/peterson-mutex.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/peterson-mutex.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/peterson-mutex.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/peterson-mutex.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/peterson-mutex.o: include/counted_ptr.hpp
obj/scheduler.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/scheduler.o: /usr/include/math.h /usr/include/features.h
obj/scheduler.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/scheduler.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/scheduler.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/scheduler.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/scheduler.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/scheduler.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/scheduler.o: /usr/include/time.h /usr/include/endian.h
obj/scheduler.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/scheduler.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/scheduler.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/scheduler.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/scheduler.o: include/counted_ptr.hpp include/scheduler.hpp
obj/scheduler.o: include/process.hpp include/system.hpp include/display.hpp
obj/scheduler.o: include/layer.hpp include/fixed-array.hpp include/image.hpp
obj/scheduler.o: include/input.hpp include/event.hpp include/input-device.hpp
obj/scheduler.o: include/peterson-mutex.hpp include/input-event.hpp
obj/system.o: include/basictypes.hpp include/Box2D/MathUtils.h
obj/system.o: /usr/include/math.h /usr/include/features.h
obj/system.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
obj/system.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h
obj/system.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
obj/system.o: /usr/include/bits/mathcalls.h /usr/include/assert.h
obj/system.o: /usr/include/stdlib.h /usr/include/sys/types.h
obj/system.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
obj/system.o: /usr/include/time.h /usr/include/endian.h
obj/system.o: /usr/include/bits/endian.h /usr/include/sys/select.h
obj/system.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
obj/system.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
obj/system.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
obj/system.o: include/counted_ptr.hpp include/display.hpp include/layer.hpp
obj/system.o: include/fixed-array.hpp include/image.hpp include/game.hpp
obj/system.o: include/scheduler.hpp include/process.hpp
obj/system.o: include/game-world.hpp include/Box2D/World.h
obj/system.o: include/Box2D/MathUtils.h include/Box2D/Arbiter.h
obj/system.o: include/entity.hpp include/Box2D/Body.h include/goal.hpp
obj/system.o: include/wall.hpp include/system.hpp include/input.hpp
obj/system.o: include/event.hpp include/input-device.hpp
obj/system.o: include/peterson-mutex.hpp include/input-event.hpp
obj/wall.o: include/game-world.hpp include/Box2D/World.h
obj/wall.o: include/Box2D/MathUtils.h include/Box2D/Arbiter.h
obj/wall.o: include/entity.hpp include/Box2D/Body.h include/basictypes.hpp
obj/wall.o: include/Box2D/MathUtils.h /usr/include/math.h
obj/wall.o: /usr/include/features.h /usr/include/sys/cdefs.h
obj/wall.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
obj/wall.o: /usr/include/gnu/stubs-64.h /usr/include/bits/huge_val.h
obj/wall.o: /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h
obj/wall.o: /usr/include/assert.h /usr/include/stdlib.h
obj/wall.o: /usr/include/sys/types.h /usr/include/bits/types.h
obj/wall.o: /usr/include/bits/typesizes.h /usr/include/time.h
obj/wall.o: /usr/include/endian.h /usr/include/bits/endian.h
obj/wall.o: /usr/include/sys/select.h /usr/include/bits/select.h
obj/wall.o: /usr/include/bits/sigset.h /usr/include/bits/time.h
obj/wall.o: /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h
obj/wall.o: /usr/include/alloca.h include/counted_ptr.hpp include/goal.hpp
obj/wall.o: include/scheduler.hpp include/process.hpp include/wall.hpp
obj/wall.o: include/system.hpp include/display.hpp include/layer.hpp
obj/wall.o: include/fixed-array.hpp include/image.hpp include/input.hpp
obj/wall.o: include/event.hpp include/input-device.hpp
obj/wall.o: include/peterson-mutex.hpp include/input-event.hpp