77339f01a9fc1605b3e4af4b2637396da27c063b
[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
10 #CXX := g++
11 CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
12
13
14 SRCS := entityManager.cpp
15 SRCS += game.cpp
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
35 SRCS += input/inputManager.cpp
36
37 SRCS += graphics/graphics.cpp
38
39 OBJS := ${SRCS:.cpp=.o}
40
41
42 TARGET := ../run_physics
43 DEPENDS := ${SRCS:.cpp=.d}
44
45
46 .PHONY: all
47 all: ${TARGET}
48
49 ${TARGET}: ${OBJS}
50         ${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS}
51         @echo ""
52
53 .PHONY: depend
54 depend: ${SRCS}
55         ${CXX} -MM $^ > ${DEPENDS}
56
57 # how to make a depend file from a source file
58 %.d: %.cpp
59         @echo "DEP: $@"
60         @${CXX} -M ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@
61
62 #@${CXX} -M ${CXXFLAGS} $< | sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' > $@
63
64
65 .PHONY: clean
66 clean:
67         rm -f ${OBJS} ${TARGET} *~ prof gmon.out
68
69 .PHONY: distclean
70 distclean: clean
71         rm -f tags ${DEPENDS}
72
73 tags: ${SRCS}
74         ctags $^
75
76 tar: clean
77         cd ..; tar -cjf physics.tar.bz2 src/
78
79
80 .PHONY: run
81 run: all
82         ${TARGET}
83
84 .PHONY: val
85 val: all
86         valgrind ${TARGET}
87
88 .PHONY: prof
89 prof: all
90         ${TARGET}
91         gprof -b ${TARGET} > prof
92         kprof -f prof
93
94 -include ${DEPENDS}