fixed relative config path, needs to be run from withen run_physics directory now
[physics.git] / src / Makefile
1
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 CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
10
11 VALFLAGS := --leak-check=full
12
13 TARGET := ../run_physics
14
15 SRCS := # simply to keep every line below the same
16 SRCS += game.cpp
17 SRCS += main.cpp
18 SRCS += mathw.cpp
19 SRCS += ticks.cpp
20 SRCS += Vector2.cpp
21 SRCS += handleSignal.cpp
22
23 SRCS += entityCreator.cpp
24 SRCS += entityManager.cpp
25 SRCS += effectManager.cpp
26 SRCS += collisionManager.cpp
27 SRCS += CollisionInfo.cpp
28
29 SRCS += Entities/Ball.cpp
30 SRCS += Entities/Entity.cpp
31 SRCS += Entities/Line.cpp
32 SRCS += Entities/Particle.cpp
33 SRCS += Entities/PhysicsEntity.cpp
34 SRCS += Entities/Point.cpp
35 SRCS += Entities/Polygon.cpp
36 SRCS += Entities/WindParticle.cpp
37
38 SRCS += GameStates/CreatingPolygon.cpp
39 SRCS += GameStates/GameState.cpp
40 SRCS += GameStates/Paused.cpp
41 SRCS += GameStates/Running.cpp
42
43 SRCS += Effects/Effect.cpp
44 SRCS += Effects/Gravity.cpp
45 SRCS += Effects/GravityWell.cpp
46 SRCS += Effects/Screen.cpp
47
48 SRCS += config/config.cpp
49 SRCS += config/reader.cpp
50
51 SRCS += input/inputManager.cpp
52
53 SRCS += graphics/graphics.cpp
54
55 OBJSDIR := ../objs/
56 OBJS := ${SRCS:.cpp=.o}
57 OBJS := $(addprefix ${OBJSDIR},${OBJS})
58
59 DEPSDIR := ../deps/
60 DEPS := ${SRCS:.cpp=.d}
61 DEPS := $(addprefix ${DEPSDIR},${DEPS})
62
63 HRDS := ${SRCS:.cpp=.h}
64 HRDS := $(filter-out main.h,$HRDS) # remove main.h
65 HRDS += debug.h
66
67 HRDS += graphics/colors.h
68
69 TARS := ${SRCS} ${HRDS} Makefile
70
71
72 VERBOSE := 0
73
74 ifeq (${VERBOSE},0)
75     # quiet the echo command
76     Q1 := @
77     # quiet the command that is `replaced' by an echo
78     Q2 := @
79 else
80     # EAT the echo command as if it was not there
81     Q1 := @true # NOTE: the space between @true and the # is VERY important!!
82     # do not quiet the command output
83     Q2 :=
84 endif
85
86 .PHONY: all
87 all: ${TARGET}
88
89 ${TARGET}: ${OBJS}
90         ${Q1}echo "${CXX}: $@"
91         ${Q2}${CXX} ${CXXFLAGS} -o $@ $^ ${LIBS}
92
93 # rule to make a depend file from a .cpp
94 ${DEPSDIR}%.d: %.cpp
95         ${Q1}echo "DEP: $@"
96         ${Q2}${CXX} -M ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@
97
98 # rule to make an object file from a .cpp
99 ${OBJSDIR}%.o: %.cpp
100         ${Q1}echo "${CXX}: $@"
101         ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $<
102
103
104 .PHONY: clean
105 clean:
106         ${Q1}echo "CLEAN: OBJS"
107         ${Q2}rm -f ${OBJS}
108         ${Q1}echo "CLEAN: TARGET"
109         ${Q2}rm -f ${TARGET}
110
111 .PHONY: distclean
112 distclean: clean
113         ${Q1}echo "CLEAN: DEPS"
114         ${Q2}rm -f ${DEPS}
115         ${Q1}echo "CLEAN: tags prof gmon.out"
116         ${Q2}rm -f tags prof gmon.out
117
118 .PHONY: gitclean
119 gitclean:
120         ${Q1}echo "git-clean: show, use gitcleanf to force"
121         ${Q2}cd ..; git clean -nxd
122
123 .PHONY: gitcleanf
124 gitcleanf:
125         ${Q1}echo "git-clean: forced"
126         ${Q2}cd ..; git clean -fxd
127
128 tags: ${SRCS}
129         ctags $^
130
131 .PHONY: tar
132 tar: ../physics.tar.bz2
133
134 .PHONY: ../physics.tar.bz2
135 ../physics.tar.bz2:
136         @echo "git-archive: Warning, archives HEAD not current"
137         ${Q1}echo "git-archive: ../physics.tar.bz2"
138         ${Q2}cd ..; git-archive --prefix=physics/ HEAD | bzip2 > physics.tar.bz2
139
140 .PHONY: run
141 run: all
142         cd ..; ./run_physics
143
144 .PHONY: gdb
145 gdb: all
146         gdb ${TARGET}
147
148 .PHONY: val
149 val: all
150         valgrind ${VALFLAGS} ${TARGET}
151
152 .PHONY: prof
153 prof: all
154         ${TARGET}
155         gprof -b ${TARGET} > prof
156         kprof -f prof
157
158 -include ${DEPS}