fixed up directory creation
[physics.git] / Makefile
CommitLineData
ad9f1fb6 1
67b5017f 2LIBGL := -lGL -lGLU
44b079f8 3LIBSDL := `sdl-config --libs`
67b5017f 4LIBS := ${LIBSDL} ${LIBGL}
44b079f8
PG
5
6OPTFLAGS := -O2
7DBGFLAGS := -ggdb
8PRFFLAGS := ${DBGFLAGS} -pg
a5aefcc6 9MYFLAGS := -Wall -pedantic -ansi
ad9f1fb6 10
88e62c4f 11VALFLAGS := --leak-check=full
4e77f48b 12CXXFLAGS := ${MYFLAGS} ${DBGFLAGS}
88e62c4f 13
9d5863c5 14CXX := g++
ad9f1fb6 15
0376f786 16DIRS := # := start
e8deb7b6
PG
17DIRS += ./
18DIRS += Entities/
19DIRS += GameStates/
20DIRS += Effects/
21DIRS += config/
22DIRS += input/
23DIRS += graphics/
3bccd1d7 24DIRS += locks/
0376f786 25
ec424960
PG
26SRCSDIR := src/
27SRCS := # := start
44b079f8 28
16f14459
PG
29OBJSDIR := objsd/
30OBJS := # := start
31
32DEPSDIR := deps/
33DEPS := # := start
34
70468808
PG
35# include all of the dir.mk
36include $(addprefix ${SRCSDIR},$(addsuffix dir.mk,${DIRS}))
869b3330 37
ec424960
PG
38WORKINGDIR := bind/
39
869b3330 40CFGDIRNAME := configs/
ec424960 41SRCCFGDIR := ${CFGDIRNAME}
869b3330
PG
42DSTCFGDIR := ${WORKINGDIR}${CFGDIRNAME}
43
44CFGS := # := start
45CFGS += keys.cfg
46CFGS := $(addprefix ${DSTCFGDIR},${CFGS})
47
9d5863c5
PG
48TARGETNAME := run_physics
49TARGETTMP := ${OBJSDIR}${TARGETNAME}
ec424960 50TARGET := ${WORKINGDIR}${TARGETNAME}
9d5863c5 51
ebea1138
PG
52DEPSBLDDIRS := $(addprefix ${DEPSDIR},${DIRS})
53OBJSBLDDIRS := $(addprefix ${OBJSDIR},${DIRS})
869b3330 54BLDDIRS := ${OBJSBLDDIRS} ${DEPSBLDDIRS} ${WORKINGDIR} ${DSTCFGDIR}
42f62a75 55
ad9f1fb6 56
70468808
PG
57PRNTFMT := printf "%-5s: %s\n"
58
393654cf
PG
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
ad9f1fb6 72
046b034c 73.PHONY: all
869b3330 74all: ${TARGET} ${CFGS}
37a74d97 75
869b3330
PG
76# how to link the main target
77${TARGETTMP}: ${OBJS}
bf7e6563 78 ${Q1}${PRNTFMT} "${CXX}" "$@"
869b3330 79 ${Q2}${CXX} ${CXXFLAGS} -o $@ $^ ${LIBS}
ad9f1fb6 80
9d5863c5 81# rule to copy tmp target to working directory
ebea1138 82${TARGET}: ${TARGETTMP} | ${WORKINGDIR}
bf7e6563 83 ${Q1}${PRNTFMT} "cp" "$@"
37a74d97 84 ${Q2}cp $< $@
9d5863c5 85
42f62a75
PG
86# how to make a directory
87${BLDDIRS}:
2688190c 88 ${Q1}${PRNTFMT} "mkdir" "$@"
42f62a75
PG
89 ${Q2}mkdir -p $@
90
2688190c
PG
91# cause the below directory rules to work out
92.SECONDEXPANSION:
93
869b3330 94# rule to make an object file from a .cpp
2688190c 95${OBJSDIR}%.o: ${SRCSDIR}%.cpp | $$(dir $$@)
bf7e6563 96 ${Q1}${PRNTFMT} "${CXX}" "$@"
869b3330
PG
97 ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $<
98
a4bb9ac2 99# rule to make a depend file from a .cpp
5f264bf7
PG
100# be clever and escape the / chars in file paths
101# DON'T simply use another sed delimiter or it can't appear in the file paths
2688190c 102${DEPSDIR}%.d: ${SRCSDIR}%.cpp | $$(dir $$@)
bf7e6563 103 ${Q1}${PRNTFMT} "DEP" "$@"
5f264bf7
PG
104 ${Q2}${CXX} -MM ${CXXFLAGS} $< | \
105 sed 's/\(^.*\):/$(subst /,\/,${OBJSDIR}\1 $@):/' > $@
ad9f1fb6 106
869b3330 107# rule to copy the config files into the working directory
2688190c 108${DSTCFGDIR}%.cfg: ${SRCCFGDIR}%.cfg | $$(dir $$@)
bf7e6563 109 ${Q1}${PRNTFMT} "cp" "$@"
869b3330 110 ${Q2}cp $< $@
054d658f 111
ad9f1fb6 112
67b5017f 113tags: ${SRCS}
bf7e6563 114 ${Q1}${PRNTFMT} "ctags" "$@"
67b5017f
PG
115 ${Q2}ctags $^
116
117
046b034c 118.PHONY: clean
ad9f1fb6 119clean:
70468808
PG
120 ${Q1}${PRNTFMT} "rm" "${OBJSDIR}"
121 ${Q2}rm -rf ${OBJSDIR}
122 ${Q1}${PRNTFMT} "rm" "${TARGET} ${TARGETTMP}"
393654cf 123 ${Q2}rm -f ${TARGET}
ad9f1fb6 124
046b034c 125.PHONY: distclean
ad9f1fb6 126distclean: clean
70468808
PG
127 ${Q1}${PRNTFMT} "rm" "${DEPSDIR}"
128 ${Q2}rm -rf ${DEPSDIR}
129 ${Q1}${PRNTFMT} "rm" "tags prof gmon.out"
393654cf 130 ${Q2}rm -f tags prof gmon.out
ad9f1fb6 131
d893cce2
PG
132.PHONY: gitclean
133gitclean:
bf7e6563 134 ${Q1}${PRNTFMT} "git clean" "showing; use gitcleanf to force removal"
5f264bf7 135 ${Q2}git clean -nxd
d893cce2
PG
136
137.PHONY: gitcleanf
138gitcleanf:
bf7e6563 139 ${Q1}${PRNTFMT} "git clean" "forcing"
5f264bf7 140 ${Q2}git clean -fxd
d893cce2 141
7adc59fe 142.PHONY: tar
5f264bf7 143tar: physics.tar.bz2
8381f595 144
5f264bf7
PG
145.PHONY: physics.tar.bz2
146physics.tar.bz2:
bf7e6563
PG
147 @${PRNTFMT} "git archive" "Warning, archives HEAD not current"
148 ${Q1}${PRNTFMT} "git archive" "physics.tar.bz2"
149 ${Q2}git archive --prefix=physics/ HEAD | bzip2 > physics.tar.bz2
ad9f1fb6 150
046b034c
PG
151.PHONY: run
152run: all
67b5017f 153 cd ${WORKINGDIR}; ./${TARGETNAME}
ad9f1fb6 154
6aad402a
PG
155.PHONY: gdb
156gdb: all
67b5017f
PG
157 cd ${WORKINGDIR}; gdb ${TARGETNAME}
158
159.PHONY: cgdb
160cgdb: all
161 cd ${WORKINGDIR}; cgdb ${TARGETNAME}
6aad402a 162
63a52c99
PG
163.PHONY: val
164val: all
823da4ea 165 cd ${WORKINGDIR}; valgrind ${VALFLAGS} ./${TARGETNAME}
63a52c99
PG
166
167.PHONY: prof
67b5017f 168prof: run
06699cc7
PG
169 cd ${WORKINGDIR}; gprof -b ${TARGETNAME} > prof
170 cd ${WORKINGDIR}; kprof -f prof
ad9f1fb6 171
4e77f48b 172
9d5863c5
PG
173MINGMAKEARGS := "LIBGL := -lopengl32 -lglu32" \
174 "LIBSDL := `/usr/mingw32/bin/sdl-config --libs`" \
175 "CXXFLAGS := ${OPTFLAGS}" \
176 "CXX := mingw32-g++" \
5f264bf7
PG
177 "OBJSDIR := objs-mingw32/" \
178 "WORKINGDIR := bin-mingw32/" \
9d5863c5
PG
179 "TARGETNAME := run_physics.exe"
180
181.PHONY: mingw32
182mingw32:
bf7e6563 183 ${Q1}${PRNTFMT} "make" "mingw32"
9d5863c5
PG
184 ${Q2}${MAKE} ${MINGMAKEARGS} clean all
185
4e77f48b 186FINALMAKEARGS := "CXXFLAGS := ${OPTFLAGS}" \
5f264bf7
PG
187 "OBJSDIR := objs/" \
188 "WORKINGDIR := bin/"
4e77f48b
PG
189
190.PHONY: final
191final:
bf7e6563 192 ${Q1}${PRNTFMT} "make" "final"
4e77f48b
PG
193 ${Q2}${MAKE} ${FINALMAKEARGS} clean all
194
06699cc7 195
f4b779e4 196-include ${DEPS}