giving more control to dir.mk files
[physics.git] / Makefile
... / ...
CommitLineData
1
2LIBGL := -lGL -lGLU
3LIBSDL := `sdl-config --libs`
4LIBS := ${LIBSDL} ${LIBGL}
5
6OPTFLAGS := -O2
7DBGFLAGS := -ggdb
8PRFFLAGS := ${DBGFLAGS} -pg
9MYFLAGS := -Wall -pedantic -ansi
10
11VALFLAGS := --leak-check=full
12CXXFLAGS := ${MYFLAGS} ${DBGFLAGS}
13
14CXX := g++
15
16DIRS := # := start
17DIRS += ./
18DIRS += Entities/
19DIRS += GameStates/
20DIRS += Effects/
21DIRS += config/
22DIRS += input/
23DIRS += graphics/
24DIRS += locks/
25
26SRCSDIR := src/
27SRCS := # := start
28
29OBJSDIR := objsd/
30OBJS := # := start
31
32DEPSDIR := deps/
33DEPS := # := start
34
35# include all of the dir.mk
36include $(addprefix ${SRCSDIR},$(addsuffix dir.mk,${DIRS}))
37
38WORKINGDIR := bind/
39
40CFGDIRNAME := configs/
41SRCCFGDIR := ${CFGDIRNAME}
42DSTCFGDIR := ${WORKINGDIR}${CFGDIRNAME}
43
44CFGS := # := start
45CFGS += keys.cfg
46CFGS := $(addprefix ${DSTCFGDIR},${CFGS})
47
48TARGETNAME := run_physics
49TARGETTMP := ${OBJSDIR}${TARGETNAME}
50TARGET := ${WORKINGDIR}${TARGETNAME}
51
52DEPSBLDDIRS := $(addprefix ${DEPSDIR},${DIRS})
53OBJSBLDDIRS := $(addprefix ${OBJSDIR},${DIRS})
54BLDDIRS := ${OBJSBLDDIRS} ${DEPSBLDDIRS} ${WORKINGDIR} ${DSTCFGDIR}
55
56
57PRNTFMT := printf "%-5s: %s\n"
58
59VERBOSE := 0
60
61ifeq (${VERBOSE},0)
62 # quiet the echo command
63 Q1 := @
64 # quiet the command that is `replaced' by an echo
65 Q2 := @
66else
67 # EAT the echo command as if it was not there
68 Q1 := @true # NOTE: the space between @true and the # is VERY important!!
69 # do not quiet the command output
70 Q2 :=
71endif
72
73.PHONY: all
74all: ${TARGET} ${CFGS}
75
76# how to link the main target
77${TARGETTMP}: ${OBJS}
78 ${Q1}${PRNTFMT} "${CXX}" "$@"
79 ${Q2}${CXX} ${CXXFLAGS} -o $@ $^ ${LIBS}
80
81# rule to copy tmp target to working directory
82${TARGET}: ${TARGETTMP} | ${WORKINGDIR}
83 ${Q1}${PRNTFMT} "cp" "$@"
84 ${Q2}cp $< $@
85
86# how to make a directory
87${BLDDIRS}:
88 ${Q2}mkdir -p $@
89
90# rule to make an object file from a .cpp
91${OBJSDIR}%.o: ${SRCSDIR}%.cpp | ${OBJSBLDDIRS}
92 ${Q1}${PRNTFMT} "${CXX}" "$@"
93 ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $<
94
95# rule to make a depend file from a .cpp
96# be clever and escape the / chars in file paths
97# DON'T simply use another sed delimiter or it can't appear in the file paths
98${DEPSDIR}%.d: ${SRCSDIR}%.cpp | ${DEPSBLDDIRS}
99 ${Q1}${PRNTFMT} "DEP" "$@"
100 ${Q2}${CXX} -MM ${CXXFLAGS} $< | \
101 sed 's/\(^.*\):/$(subst /,\/,${OBJSDIR}\1 $@):/' > $@
102
103# rule to copy the config files into the working directory
104${DSTCFGDIR}%.cfg: ${SRCCFGDIR}%.cfg | ${DSTCFGDIR}
105 ${Q1}${PRNTFMT} "cp" "$@"
106 ${Q2}cp $< $@
107
108
109tags: ${SRCS}
110 ${Q1}${PRNTFMT} "ctags" "$@"
111 ${Q2}ctags $^
112
113
114.PHONY: clean
115clean:
116 ${Q1}${PRNTFMT} "rm" "${OBJSDIR}"
117 ${Q2}rm -rf ${OBJSDIR}
118 ${Q1}${PRNTFMT} "rm" "${TARGET} ${TARGETTMP}"
119 ${Q2}rm -f ${TARGET}
120
121.PHONY: distclean
122distclean: clean
123 ${Q1}${PRNTFMT} "rm" "${DEPSDIR}"
124 ${Q2}rm -rf ${DEPSDIR}
125 ${Q1}${PRNTFMT} "rm" "tags prof gmon.out"
126 ${Q2}rm -f tags prof gmon.out
127
128.PHONY: gitclean
129gitclean:
130 ${Q1}${PRNTFMT} "git clean" "showing; use gitcleanf to force removal"
131 ${Q2}git clean -nxd
132
133.PHONY: gitcleanf
134gitcleanf:
135 ${Q1}${PRNTFMT} "git clean" "forcing"
136 ${Q2}git clean -fxd
137
138.PHONY: tar
139tar: physics.tar.bz2
140
141.PHONY: physics.tar.bz2
142physics.tar.bz2:
143 @${PRNTFMT} "git archive" "Warning, archives HEAD not current"
144 ${Q1}${PRNTFMT} "git archive" "physics.tar.bz2"
145 ${Q2}git archive --prefix=physics/ HEAD | bzip2 > physics.tar.bz2
146
147.PHONY: run
148run: all
149 cd ${WORKINGDIR}; ./${TARGETNAME}
150
151.PHONY: gdb
152gdb: all
153 cd ${WORKINGDIR}; gdb ${TARGETNAME}
154
155.PHONY: cgdb
156cgdb: all
157 cd ${WORKINGDIR}; cgdb ${TARGETNAME}
158
159.PHONY: val
160val: all
161 cd ${WORKINGDIR}; valgrind ${VALFLAGS} ./${TARGETNAME}
162
163.PHONY: prof
164prof: run
165 cd ${WORKINGDIR}; gprof -b ${TARGETNAME} > src/prof
166 kprof -f prof
167
168
169MINGMAKEARGS := "LIBGL := -lopengl32 -lglu32" \
170 "LIBSDL := `/usr/mingw32/bin/sdl-config --libs`" \
171 "CXXFLAGS := ${OPTFLAGS}" \
172 "CXX := mingw32-g++" \
173 "OBJSDIR := objs-mingw32/" \
174 "WORKINGDIR := bin-mingw32/" \
175 "TARGETNAME := run_physics.exe"
176
177.PHONY: mingw32
178mingw32:
179 ${Q1}${PRNTFMT} "make" "mingw32"
180 ${Q2}${MAKE} ${MINGMAKEARGS} clean all
181
182FINALMAKEARGS := "CXXFLAGS := ${OPTFLAGS}" \
183 "OBJSDIR := objs/" \
184 "WORKINGDIR := bin/"
185
186.PHONY: final
187final:
188 ${Q1}${PRNTFMT} "make" "final"
189 ${Q2}${MAKE} ${FINALMAKEARGS} clean all
190
191-include ${DEPS}