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