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