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