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