]> git.pond.sub.org Git - empserver/blob - Make.mk
Clean up dependencies after failed compile
[empserver] / Make.mk
1
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
4 #                            Ken Stevens, Steve McClure
5
6 #   This program is free software; you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation; either version 2 of the License, or
9 #   (at your option) any later version.
10
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program; if not, write to the Free Software
18 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 #   ---
21
22 #   See files README, COPYING and CREDITS in the root of the source
23 #   tree for related information and legal notices.  It is expected
24 #   that future projects/authors will amend these files as needed.
25
26 #   ---
27
28 #   Make.mk: The real Makefile, included by GNUmakefile
29 #  
30 #   Known contributors to this file:
31 #      Markus Armbruster, 2005-2007
32
33
34 # This makefile was inspired by `Recursive Make Considered Harmful',
35 # Peter Miller, 1997.
36 # http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html
37
38 # Recursively expanded variables are occasionally useful, but can be
39 # slow and tricky.  Do not use them gratuitously.  If you don't
40 # understand this, always use `:=' rather than `='.
41
42 # Default goal
43 all:
44
45 # Delete target on error.  Every Makefile should have this.
46 .DELETE_ON_ERROR:
47
48 # Source files
49 ifeq ($(revctrl),git)
50 src := $(shell cd $(srcdir) && git-ls-files)
51 else
52 include $(srcdir)/sources.mk
53 endif
54 dirs := $(sort $(dir $(src)))
55 csrc := $(filter %.c, $(src))
56 tsrc := $(filter %.t, $(src))
57 man6 := $(filter man/%.6, $(src))
58 builtins := $(filter src/lib/global/%.config, $(src))
59
60 # Info subjects (automatically generated)
61 -include subjects.mk
62
63 # Abbreviations
64 topics := $(patsubst %.t,%,$(notdir $(tsrc)))
65 info := $(topics) $(subjects) all TOP
66 subjects.html := $(addprefix info.html/, $(addsuffix .html, $(subjects)))
67 topics.html := $(addprefix info.html/, $(addsuffix .html, $(topics)))
68 scripts := $(srcdir)/src/scripts
69 depcomp := $(SHELL) $(srcdir)/depcomp
70 tarball := $(SHELL) -e $(scripts)/tarball
71 econfig := $(sysconfdir)/empire/econfig
72 schedule := $(sysconfdir)/empire/schedule
73 gamedir := $(localstatedir)/empire
74 builtindir := $(datadir)/empire/builtin
75 einfodir := $(datadir)/empire/info.nr
76 ehtmldir := $(datadir)/empire/info.html
77
78 # How to substitute Autoconf output variables
79 # Recursively expanded so that $@ and $< work.
80 subst.in = sed \
81         -e 's?@configure_input\@?$(notdir $@): Generated from $(notdir $<) by make.?g' \
82         -e 's?@builtindir\@?$(builtindir)?g'    \
83         -e 's?@econfig\@?$(econfig)?g'          \
84         -e 's?@einfodir\@?$(einfodir)?g'        \
85         -e 's?@gamedir\@?$(gamedir)?g'          \
86         -e 's/@EMPIREHOST\@/$(EMPIREHOST)/g'    \
87         -e 's/@EMPIREPORT\@/$(EMPIREPORT)/g'
88
89 # Generated files
90 # See `Cleanliness' below
91 # sources.mk subjects.mk
92 # Generated by Autoconf, not distributed:
93 ac := config.h config.log config.status info.html info.nr lib stamp-h
94 ac += $(basename $(filter %.in, $(src)))
95 ac += $(srcdir)/autom4te.cache $(srcdir)/src/client/autom4te.cache
96 # distributed by dist-source from $(srcdir):
97 acdist := aclocal.m4 config.h.in configure stamp-h.in
98 # distributed by dist-client from $(srcdir):
99 acdistcli := $(addprefix src/client/, aclocal.m4 config.h.in configure)
100 # Object files:
101 obj := $(csrc:.c=.o) $(filter %.o, $(ac:.c=.o))
102 # Dependencies:
103 deps := $(obj:.o=.d)
104 # Library archives:
105 libs := $(addprefix lib/, libcommon.a libas.a libgen.a libglobal.a)
106 # Programs:
107 util := $(addprefix src/util/, $(addsuffix $(EXEEXT), empsched fairland files pconfig))
108 client := src/client/empire$(EXEEXT)
109 server := src/server/emp_server$(EXEEXT)
110 # Info subjects:
111 tsubj := $(addprefix info/, $(addsuffix .t, $(subjects)))
112 ttop := info/TOP.t
113 # Formatted info:
114 info.nr := $(addprefix info.nr/, $(info))
115 info.html := $(addprefix info.html/, $(addsuffix .html, $(info)))
116
117 # Conditionally generated files:
118 empth_obj := src/lib/empthread/io.o
119 empth_lib :=
120 ifeq ($(empthread),LWP)
121 empth_obj += src/lib/empthread/lwp.o src/lib/empthread/posix.o
122 empth_lib += lib/liblwp.a
123 endif
124 ifeq ($(empthread),POSIX)
125 empth_obj += src/lib/empthread/pthread.o src/lib/empthread/posix.o
126 endif
127 ifeq ($(empthread),Windows)
128 empth_obj += src/lib/empthread/ntthread.o
129 endif
130
131 ifeq ($(empthread),Windows)     # really: W32, regardless of thread package
132 libs += lib/libw32.a
133 endif
134
135 # Cleanliness
136 # Each generated file should be in one of the following sets.
137 # Removed by clean:
138 clean := $(obj) $(deps) $(libs) $(util) $(client) $(server) $(tsubj)    \
139 $(ttop) $(info.nr) $(info.html) $(empth_obj) $(empth_lib)
140 # Removed by distclean:
141 distclean := $(ac) subjects.mk
142 # Distributed by dist-source from $(srcdir)
143 src_distgen := $(acdist)
144 # Distributed by dist-source from .
145 bld_distgen := sources.mk
146 # Distributed by dist-client from $(srcdir)/src/client
147 cli_distgen := $(acdistcli)
148
149 # Compiler flags
150 CPPFLAGS += -I$(srcdir)/include -I.
151 ifeq ($(empthread),Windows)     # really: W32, regardless of thread package
152 CPPFLAGS += -I$(srcdir)/src/lib/w32
153 endif
154 ifeq ($(have_gcc),yes)
155 CFLAGS += -fno-builtin-carg     # conflicts with our carg()
156 CFLAGS += -fno-common
157 CFLAGS += -Wall -W -Wno-unused -Wpointer-arith -Wstrict-prototypes      \
158 -Wmissing-prototypes -Wnested-externs -Wredundant-decls
159 endif
160 LDLIBS += -lm
161 $(client): LDLIBS += $(termlibs)
162
163 ### Advertized goals
164
165 .PHONY: all
166 all: $(util) $(client) $(server) info
167
168 .PHONY: info html
169 info: $(info.nr)
170 html: $(info.html)
171
172 .PHONY: clean
173 clean:
174         rm -f $(clean)
175
176 .PHONY: distclean
177 distclean: clean
178         rm -rf $(distclean)
179
180 .PHONY: install
181 install: all installdirs
182         $(INSTALL_PROGRAM) $(util) $(server) $(sbindir)
183         $(INSTALL_PROGRAM) $(client) $(bindir)
184         $(INSTALL) -m 444 $(addprefix $(srcdir)/, $(builtins)) $(builtindir)
185         $(INSTALL_DATA) $(info.nr) $(einfodir)
186         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(mandir)/man6
187         sed -e '1,/^$$/d' -e 's/^/# /g' <$(srcdir)/doc/schedule >$(schedule).dist
188         echo >>$(schedule).dist
189         echo 'every 10 minutes' >>$(schedule).dist
190         [ -e $(schedule) ] || mv $(schedule).dist $(schedule)
191         if [ -e $(econfig) ]; then                                      \
192             echo "Attempting to update your econfig";                   \
193             if src/util/pconfig $(econfig) >$(econfig).dist; then       \
194                 if cmp -s $(econfig) $(econfig).dist; then              \
195                     echo "$(econfig) unchanged";                        \
196                     rm $(econfig).dist;                                 \
197                 fi;                                                     \
198             else                                                        \
199                 echo "Your $(econfig) doesn't work";                    \
200                 src/util/pconfig >$(econfig).dist;                      \
201             fi;                                                         \
202             if [ -e $(econfig).dist ]; then                             \
203                 echo "Check out $(econfig).dist";                       \
204             fi;                                                         \
205         else                                                            \
206             src/util/pconfig >$(econfig);                               \
207         fi
208
209 .PHONY: installdirs
210 installdirs:
211         mkdir -p $(sbindir) $(bindir) $(builtindir) $(einfodir) $(mandir)/man6 $(dir $(econfig)) $(gamedir)
212
213 .PHONY: install-html
214 install-html: html
215         mkdir -p $(ehtmldir)
216         $(INSTALL_DATA) $(info.html) $(ehtmldir)
217
218 .PHONY: uninstall
219 uninstall:
220         rm -f $(addprefix $(sbindir)/, $(notdir $(util) $(server)))
221         rm -f $(addprefix $(bindir)/, $(notdir $(client)))
222         rm -rf $(builtindir) $(einfodir)
223         rm -f $(addprefix $(mandir)/man6/, $(notdir $(man6)))
224         @echo "$(dir $(econfig)) and $(gamedir) not removed, you may wish to remove it manually."
225
226 .PHONY: dist
227 dist: dist-source dist-client dist-info
228
229
230 ### Implicit rules
231
232 # Compile with dependencies as side effect, i.e. create %.d in
233 # addition to %.o.
234 ifeq ($(how_to_dep),fast)
235 %.o: %.c
236         $(COMPILE.c) -MT $@ -MMD -MP $(OUTPUT_OPTION) $< \
237         || { rm -f $(@:.o=.d) $@; false; }
238 # Why the rm?  If gcc's preprocessor chokes, it leaves an empty
239 # dependency file behind, and doesn't touch the object file.  If an
240 # old object file exists, and is newer than the .c file, make will
241 # then consider the object file up-to-date.
242 endif
243 ifeq ($(how_to_dep),depcomp)
244 %.o: %.c
245         source='$<' object='$@' depfile='$(@:.o=.d)' $(CCDEPMODE) $(depcomp) \
246         $(COMPILE.c) $(OUTPUT_OPTION) $<
247 endif
248 # Cancel the rule to compile %.c straight to %, it interferes with
249 # automatic dependency generation
250 %: %.c
251
252 # Work around MinGW Make's broken built-in link rule:
253 %$(EXEEXT): %.o
254         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
255
256
257 info.nr/%: info/%.t
258         $(NROFF) $(filter %.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@
259 # Pipes in make are a pain.  Catch obvious errors:
260         @test -s $@
261
262 info.html/%.html: info/%.t
263         perl $(filter %.pl, $^) $< >$@
264
265
266 ### Explicit rules
267
268 # Compilation
269
270 $(server): $(filter src/server/% src/lib/commands/% src/lib/player/% src/lib/subs/% src/lib/update/%, $(obj)) $(empth_obj) $(empth_lib) $(libs)
271         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
272
273 $(client): $(filter src/client/%, $(obj)) src/lib/global/version.o
274         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
275 ifeq ($(empthread),Windows)
276 $(client): src/lib/w32/getopt.o
277 endif
278
279 $(util): $(libs)
280
281 lib/libas.a: $(filter src/lib/as/%, $(obj))
282 lib/libcommon.a: $(filter src/lib/common/%, $(obj))
283 lib/libgen.a: $(filter src/lib/gen/%, $(obj))
284 lib/libglobal.a: $(filter src/lib/global/%, $(obj))
285 lib/liblwp.a: $(filter src/lib/lwp/%, $(obj))
286 lib/libw32.a: $(filter src/lib/w32/%, $(obj))
287
288 $(libs) $(empth_lib):
289         $(AR) rc $@ $?
290         $(RANLIB) $@
291
292 # Info formatting
293
294 # FIXME Remaking subjects doesn't work correctly when info sources get
295 # removed or subjects get dropped.
296
297 subjects.mk: info/findsubj.pl $(tsrc)
298         perl $(srcdir)/info/findsubj.pl $(filter %.t, $^)
299
300 $(tsubj): info/mksubj.pl
301         perl $(srcdir)/info/mksubj.pl $@ $(filter %.t, $^)
302
303 $(ttop): $(tsubj)
304         perl $(srcdir)/info/mktop.pl $@ $(filter %.t, $^)
305
306 info.nr/all: $(filter-out info.nr/all, $(info.nr))
307         >$@
308         (cd info.nr && LC_ALL=C ls -C $(info)) >>$@
309
310 info.html/all.html: info.nr/all info/ls2html.pl
311         expand $< | perl $(srcdir)/info/ls2html.pl >$@
312
313 $(info.nr): info/CRT.MAC info/INFO.MAC info/Blank.awk
314
315 $(subjects.html) info.html/TOP.html: info/subj2html.pl
316 $(topics.html): info/emp2html.pl
317
318 info.ps: info/TROFF.MAC info/INFO.MAC $(ttop) $(tsubj) $(tsrc)
319         groff $^ >$@
320
321 # List of source files
322
323 # Note: $(srcdir)/sources.mk is only used when the source tree came
324 # from a tarball rather than git.  The following rules create a
325 # sources.mk to put into the tarball.  It is not used in this build.
326
327 ifeq ($(revctrl),git)
328 sources.mk:
329         echo "src := $(src)" >sources.mk
330 else
331 ifneq ($(srcdir),.)
332 sources.mk: $(srcdir)/sources.mk
333         cp -f $^ $@
334 endif
335 endif
336
337 # Distributing
338
339 .PHONY: dist-source
340 dist-source: $(src_distgen) $(bld_distgen)
341         $(tarball) $(TARNAME)-$(VERSION) $(bld_distgen) -C $(srcdir) $(src_distgen) $(src)
342
343 .PHONY: dist-client
344 dist-client: $(cli_distgen)
345         $(tarball) $(TARNAME)-client-$(VERSION)                         \
346         -C $(srcdir)/src/client                                         \
347                 $(notdir $(filter src/client/%, $(src)) $(cli_distgen)) \
348         -C $(srcdir)/include proto.h version.h                          \
349         -C $(srcdir)/src/lib/global version.c                           \
350         -C $(srcdir)/src/lib/w32 getopt.h getopt.c                      \
351         -C $(srcdir)/man empire.6                                       \
352         -C $(srcdir) COPYING INSTALL install-sh
353
354 .PHONY: dist-info
355 dist-info: info html
356         $(tarball) $(TARNAME)-info-text-$(VERSION) -C info.nr $(info)
357         $(tarball) $(TARNAME)-info-html-$(VERSION) -C info.html $(addsuffix .html, $(info))
358
359 ifneq ($(deps),)
360 -include $(deps)
361 endif
362
363
364 # Automatic remake of configuration
365 # See (autoconf)Automatic Remaking.
366 # This requires sufficiently recent versions of autoconf and automake
367
368 $(srcdir)/configure: configure.ac aclocal.m4
369         cd $(srcdir) && autoconf
370
371 # autoheader might not change config.h.in, so touch a stamp file.
372 $(srcdir)/config.h.in: stamp-h.in
373 $(srcdir)/stamp-h.in: configure.ac aclocal.m4
374         cd $(srcdir) && autoheader
375         touch $@
376
377 $(srcdir)/aclocal.m4: $(filter m4/%.m4, $(src))
378         cd $(srcdir) && aclocal -I m4
379
380 # config.status might not change config.h; use the stamp file.
381 config.h: stamp-h
382 stamp-h: config.h.in config.status
383         ./config.status config.h stamp-h
384
385 GNUmakefile: GNUmakefile.in config.status
386         ./config.status $@
387
388 config.status: configure
389         ./config.status --recheck
390
391 src/lib/global/path.c src/client/ipglob.c: %: %.in GNUmakefile Make.mk
392         $(subst.in) <$< >$@
393
394
395 # Make files for standalone client distribution
396
397 $(srcdir)/src/client/configure: src/client/configure.ac src/client/aclocal.m4
398         cd $(dir $@) && autoconf
399
400 $(srcdir)/src/client/config.h.in: src/client/configure.ac src/client/aclocal.m4
401         cd $(dir $@) && autoheader
402         touch $@
403
404 $(srcdir)/src/client/aclocal.m4: m4/lib_socket_nsl.m4
405         cp -f $< $@