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