]> git.pond.sub.org Git - empserver/blob - Make.mk
sorder: Widen coordinate columns to four characters
[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 # Self-tests
182 checks := check-smoke
183
184
185 ### Advertized goals
186
187 .PHONY: all
188 all: $(util) $(client) $(server) info
189
190 .PHONY: info html
191 info: $(info.nr)
192 html: $(info.html)
193
194 .PHONY: clean
195 clean:
196         $(call quiet-command,rm -rf $(clean),CLEAN)
197
198 .PHONY: distclean
199 distclean: clean
200         $(call quiet-command,rm -rf $(distclean) $(cli_distgen),DISTCLEAN)
201
202 .PHONY: install
203 install: all installdirs
204         $(INSTALL_PROGRAM) $(util) $(server) $(sbindir)
205         $(INSTALL_PROGRAM) $(client) $(bindir)
206         $(INSTALL) -m 444 $(addprefix $(srcdir)/, $(builtins)) $(builtindir)
207         $(INSTALL_DATA) $(info.nr) $(einfodir)
208         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(mandir)/man6
209         sed -e '1,/^$$/d' -e 's/^/# /g' <$(srcdir)/doc/schedule >$(schedule).dist
210         echo >>$(schedule).dist
211         echo 'every 10 minutes' >>$(schedule).dist
212         [ -e $(schedule) ] || mv $(schedule).dist $(schedule)
213         if [ -e $(econfig) ]; then                                      \
214             echo "Attempting to update your econfig";                   \
215             if src/util/pconfig $(econfig) >$(econfig).dist; then       \
216                 if cmp -s $(econfig) $(econfig).dist; then              \
217                     echo "$(econfig) unchanged";                        \
218                     rm $(econfig).dist;                                 \
219                 fi;                                                     \
220             else                                                        \
221                 echo "Your $(econfig) doesn't work";                    \
222                 src/util/pconfig >$(econfig).dist;                      \
223             fi;                                                         \
224             if [ -e $(econfig).dist ]; then                             \
225                 echo "Check out $(econfig).dist";                       \
226             fi;                                                         \
227         else                                                            \
228             src/util/pconfig >$(econfig);                               \
229         fi
230
231 .PHONY: installdirs
232 installdirs:
233         mkdir -p $(sbindir) $(bindir) $(builtindir) $(einfodir) $(mandir)/man6 $(dir $(econfig)) $(gamedir)
234
235 .PHONY: install-html
236 install-html: html
237         mkdir -p $(ehtmldir)
238         $(INSTALL_DATA) $(info.html) $(ehtmldir)
239
240 .PHONY: uninstall
241 uninstall:
242         rm -f $(addprefix $(sbindir)/, $(notdir $(util) $(server)))
243         rm -f $(addprefix $(bindir)/, $(notdir $(client)))
244         rm -rf $(builtindir) $(einfodir)
245         rm -f $(addprefix $(mandir)/man6/, $(notdir $(man6)))
246         @echo "$(dir $(econfig)) and $(gamedir) not removed, you may wish to remove it manually."
247
248 .PHONY: dist
249 dist: dist-source dist-client dist-info
250
251 .PHONY: check $(checks)
252 check: $(checks)
253 $(checks): all
254 check-smoke:
255         @echo "Warning: smoke test is immature and needs work." >&2
256         $(srcdir)/tests/files-test $(srcdir)
257         $(srcdir)/tests/fairland-test $(srcdir)
258 ifeq ($(empthread),LWP)
259         $(srcdir)/tests/smoke-test $(srcdir)
260 else
261         @echo "$(srcdir)/tests/smoke-test SKIPPED"
262 endif
263
264
265 ### Implicit rules
266
267 # Compile with dependencies as side effect, i.e. create %.d in
268 # addition to %.o.
269 ifeq ($(how_to_dep),fast)
270 %.o: %.c
271         $(call quiet-command,$(COMPILE.c) -MT $@ -MMD -MP -MF $(@:.o=.d) \
272         $(OUTPUT_OPTION) $< || { rm -f $(@:.o=.d) $@; false; },CC $@)
273 # Why the rm?  If gcc's preprocessor chokes, it leaves an empty
274 # dependency file behind, and doesn't touch the object file.  If an
275 # old object file exists, and is newer than the .c file, make will
276 # then consider the object file up-to-date.
277 endif
278 ifeq ($(how_to_dep),depcomp)
279 %.o: %.c
280         $(call quiet-command,source='$<' object='$@' depfile='$(@:.o=.d)' \
281         $(CCDEPMODE) $(depcomp) $(COMPILE.c) $(OUTPUT_OPTION) $<,CC $@)
282 endif
283 # Cancel the rule to compile %.c straight to %, it interferes with
284 # automatic dependency generation
285 %: %.c
286
287 %$(EXEEXT): %.o
288         $(call quiet-command,$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@,LINK $@)
289
290
291 info.nr/%: info/%.t
292         $(call quiet-command,$(NROFF) $(filter %.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@ && test -s $@,NROFF $@)
293 # Pipes in make are a pain.  The "test -s" catches obvious errors.
294
295 info.html/%.html: info/%.t
296         $(call quiet-command,perl $(srcdir)/info/emp2html.pl $(info) <$< >$@,GEN $@)
297
298
299 ### Explicit rules
300
301 # Compilation
302
303 $(server): $(filter src/server/% src/lib/commands/% src/lib/player/% src/lib/subs/% src/lib/update/%, $(obj)) $(empth_obj) $(empth_lib) $(libs)
304         $(call quiet-command,$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@,LINK $@)
305
306 $(client): $(filter src/client/%, $(obj)) src/lib/global/version.o
307         $(call quiet-command,$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@,LINK $@)
308
309 $(util): $(libs)
310
311 lib/libcommon.a: $(filter src/lib/common/%, $(obj))
312 lib/libgen.a: $(filter src/lib/gen/%, $(obj))
313 lib/libglobal.a: $(filter src/lib/global/%, $(obj))
314 lib/liblwp.a: $(filter src/lib/lwp/%, $(obj))
315 lib/libw32.a: $(filter src/lib/w32/%, $(obj))
316
317 $(libs) $(empth_lib):
318         $(call quiet-command,$(AR) rc $@ $?,AR $@)
319         $(RANLIB) $@
320
321 # Info formatting
322
323 # mksubj.pl reads $(tsrc) and writes $(tsubj).  The naive rule
324 #     $(ttop) $(tsubj): $(tsrc)
325 #           COMMAND
326 # runs COMMAND once for each target.  That's because multiple targets
327 # in an explicit rule is just a shorthand for one rule per target,
328 # each with the same prerequisites and commands.  Use a stamp file.
329 $(tsubj): info/stamp-subj ;
330 info/stamp-subj: info/mksubj.pl $(tsrc)
331         $(call quiet-command,perl $(srcdir)/info/mksubj.pl $(subjects) $(filter %.t, $^),GEN '$$(subjects)')
332         >$@
333
334 $(ttop): info/mktop.pl info/subjects.mk
335         $(call quiet-command,perl $(srcdir)/info/mktop.pl $@ $(subjects),GEN $@)
336
337 info.nr/all: $(filter-out info.nr/all, $(info.nr))
338         >$@
339         (cd info.nr && LC_ALL=C ls -C $(info)) >>$@
340
341 info.html/all.html: info.nr/all info/ls2html.pl
342         expand $< | perl $(srcdir)/info/ls2html.pl >$@
343
344 $(info.nr): info/CRT.MAC info/INFO.MAC info/Blank.awk
345
346 $(info.html): info/emp2html.pl
347
348 info.ps: info/TROFF.MAC info/INFO.MAC $(ttop) $(tsubj) $(tsrc)
349         groff $^ >$@
350
351 # Distributing
352
353 .PHONY: dist-source
354 dist-source: $(src_distgen)
355 ifeq ($(revctrl),git)
356         echo "src := $(src)" >$(srcdir)/sources.mk
357 endif
358         $(tarball) $(TARNAME)-$(VERSION) -C $(srcdir) $(src_distgen) $(src) sources.mk
359
360 .PHONY: dist-client
361 dist-client: $(cli_distgen)
362         $(tarball) $(TARNAME)-client-$(VERSION)                         \
363         -C $(srcdir)/src/client                                         \
364                 $(notdir $(filter src/client/%, $(src)) $(cli_distgen)) \
365         -C $(srcdir)/include proto.h version.h                          \
366         -C $(srcdir)/src/lib/global version.c                           \
367         -C $(srcdir)/src/lib $(addprefix w32/, $(client/w32))           \
368         -C $(srcdir)/man empire.6                                       \
369         -C $(srcdir)/build-aux install-sh                               \
370         -C $(srcdir) COPYING INSTALL
371
372 .PHONY: dist-info
373 dist-info: info html
374         $(tarball) $(TARNAME)-info-text-$(VERSION) -C info.nr $(info)
375         $(tarball) $(TARNAME)-info-html-$(VERSION) -C info.html $(addsuffix .html, $(info))
376
377 # Dependencies
378
379 ifneq ($(deps),)
380 -include $(deps)
381 endif
382
383
384 # Automatic remake of configuration
385 # See (autoconf)Automatic Remaking.
386 # This requires sufficiently recent versions of autoconf and automake
387
388 $(srcdir)/configure: configure.ac aclocal.m4
389         cd $(srcdir) && autoconf
390
391 # autoheader might not change config.h.in, so touch a stamp file.
392 $(srcdir)/config.h.in: stamp-h.in ;
393 $(srcdir)/stamp-h.in: configure.ac aclocal.m4
394         cd $(srcdir) && autoheader
395         touch $@
396
397 $(srcdir)/aclocal.m4: $(filter m4/%.m4, $(src))
398         cd $(srcdir) && aclocal -I m4
399
400 # config.status might not change config.h; use the stamp file.
401 config.h: stamp-h ;
402 stamp-h: config.h.in config.status
403         ./config.status config.h stamp-h
404
405 GNUmakefile: GNUmakefile.in config.status
406         ./config.status $@
407
408 config.status: configure
409         ./config.status --recheck
410
411 src/lib/global/path.c src/client/ipglob.c: %: %.in GNUmakefile Make.mk
412         $(call quiet-command,$(subst.in) <$< >$@,GEN $@)
413
414
415 # Make files for standalone client distribution
416
417 $(srcdir)/src/client/configure: src/client/configure.ac src/client/aclocal.m4
418         cd $(dir $@) && autoconf
419
420 $(srcdir)/src/client/config.h.in: src/client/configure.ac src/client/aclocal.m4
421         cd $(dir $@) && autoheader
422         touch $@
423
424 $(srcdir)/src/client/aclocal.m4: m4/ax_lib_socket_nsl.m4 m4/my_terminfo.m4 m4/my_windows_api.m4
425         cat $^ >$@