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