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