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