Commit | Line | Data |
---|---|---|
ad9f1fb6 | 1 | |
44b079f8 PG |
2 | LIBGL := -lGL -lGLU |
3 | LIBSDL := `sdl-config --libs` | |
4 | LIBS := ${LIBSDL} ${LIBGL} | |
5 | ||
6 | OPTFLAGS := -O2 | |
7 | DBGFLAGS := -ggdb | |
8 | PRFFLAGS := ${DBGFLAGS} -pg | |
9 | ||
10 | #CXX := g++ | |
11 | CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS} | |
ad9f1fb6 | 12 | |
ad9f1fb6 | 13 | |
046b034c PG |
14 | SRCS := entityManager.cpp |
15 | SRCS += game.cpp | |
046b034c PG |
16 | SRCS += main.cpp |
17 | SRCS += mathw.cpp | |
18 | SRCS += ticks.cpp | |
19 | SRCS += Vector2.cpp | |
20 | ||
21 | SRCS += Entities/Ball.cpp | |
22 | SRCS += Entities/Entity.cpp | |
23 | SRCS += Entities/Line.cpp | |
24 | SRCS += Entities/Particle.cpp | |
25 | SRCS += Entities/PhysicsEntity.cpp | |
26 | SRCS += Entities/Point.cpp | |
27 | SRCS += Entities/Polygon.cpp | |
28 | SRCS += Entities/WindParticle.cpp | |
29 | ||
30 | SRCS += GameStates/CreatingPolygon.cpp | |
31 | SRCS += GameStates/GameState.cpp | |
32 | SRCS += GameStates/Paused.cpp | |
33 | SRCS += GameStates/Running.cpp | |
34 | ||
f7b3b2eb PG |
35 | SRCS += input/inputManager.cpp |
36 | ||
44b079f8 PG |
37 | SRCS += graphics/graphics.cpp |
38 | ||
39 | OBJS := ${SRCS:.cpp=.o} | |
40 | ||
ad9f1fb6 | 41 | |
44b079f8 | 42 | TARGET := ../run_physics |
466ce08d | 43 | DEPENDS := ${SRCS:.cpp=.d} |
ad9f1fb6 | 44 | |
ad9f1fb6 | 45 | |
046b034c PG |
46 | .PHONY: all |
47 | all: ${TARGET} | |
ad9f1fb6 | 48 | |
046b034c PG |
49 | ${TARGET}: ${OBJS} |
50 | ${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS} | |
466ce08d | 51 | @echo "" |
ad9f1fb6 | 52 | |
466ce08d PG |
53 | # how to make a depend file from a source file |
54 | %.d: %.cpp | |
55 | @echo "DEP: $@" | |
56 | @${CXX} -M ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@ | |
57 | ||
58 | #@${CXX} -M ${CXXFLAGS} $< | sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' > $@ | |
ad9f1fb6 | 59 | |
ad9f1fb6 | 60 | |
046b034c | 61 | .PHONY: clean |
ad9f1fb6 | 62 | clean: |
1fdcf18d | 63 | rm -f ${OBJS} ${TARGET} |
ad9f1fb6 | 64 | |
046b034c | 65 | .PHONY: distclean |
ad9f1fb6 | 66 | distclean: clean |
1fdcf18d | 67 | rm -f ${DEPENDS} tags prof gmon.out |
ad9f1fb6 | 68 | |
046b034c PG |
69 | tags: ${SRCS} |
70 | ctags $^ | |
71 | ||
ad9f1fb6 | 72 | tar: clean |
63a52c99 | 73 | cd ..; tar -cjf physics.tar.bz2 src/ |
ad9f1fb6 PG |
74 | |
75 | ||
046b034c PG |
76 | .PHONY: run |
77 | run: all | |
27b74820 | 78 | ${TARGET} |
ad9f1fb6 | 79 | |
63a52c99 PG |
80 | .PHONY: val |
81 | val: all | |
82 | valgrind ${TARGET} | |
83 | ||
84 | .PHONY: prof | |
85 | prof: all | |
86 | ${TARGET} | |
87 | gprof -b ${TARGET} > prof | |
88 | kprof -f prof | |
ad9f1fb6 | 89 | |
466ce08d | 90 | -include ${DEPENDS} |