moved items that a normal make doesn't create to distclean
[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 # 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' > $@
59
60
61 .PHONY: clean
62 clean:
63         rm -f ${OBJS} ${TARGET}
64
65 .PHONY: distclean
66 distclean: clean
67         rm -f ${DEPENDS} tags prof gmon.out
68
69 tags: ${SRCS}
70         ctags $^
71
72 tar: clean
73         cd ..; tar -cjf physics.tar.bz2 src/
74
75
76 .PHONY: run
77 run: all
78         ${TARGET}
79
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
89
90 -include ${DEPENDS}