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