]> git.pond.sub.org Git - empserver/blob - Make.mk
New realm selector timestamp
[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), 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 -Wpointer-arith -Wstrict-prototypes      \
158 -Wmissing-prototypes -Wnested-externs -Wredundant-decls
159 endif
160 LDLIBS += -lm
161 $(client): LDLIBS += $(termlibs)
162
163 ### Advertized goals
164
165 .PHONY: all
166 all: $(util) $(client) $(server) info
167
168 .PHONY: info html
169 info: $(info.nr)
170 html: $(info.html)
171
172 .PHONY: clean
173 clean:
174         rm -f $(clean)
175
176 .PHONY: distclean
177 distclean: clean
178         rm -rf $(distclean)
179
180 .PHONY: install
181 install: all installdirs
182         $(INSTALL_PROGRAM) $(util) $(server) $(sbindir)
183         $(INSTALL_PROGRAM) $(client) $(bindir)
184         $(INSTALL) -m 444 $(addprefix $(srcdir)/, $(builtins)) $(builtindir)
185         $(INSTALL_DATA) $(info.nr) $(einfodir)
186         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(mandir)/man6
187         sed -e '1,/^$$/d' -e 's/^/# /g' <$(srcdir)/doc/schedule >$(schedule).dist
188         echo >>$(schedule).dist
189         echo 'every 10 minutes' >>$(schedule).dist
190         [ -e $(schedule) ] || mv $(schedule).dist $(schedule)
191         if [ -e $(econfig) ]; then                                      \
192             echo "Attempting to update your econfig";                   \
193             if src/util/pconfig $(econfig) >$(econfig).dist; then       \
194                 if cmp -s $(econfig) $(econfig).dist; then              \
195                     echo "$(econfig) unchanged";                        \
196                     rm $(econfig).dist;                                 \
197                 fi;                                                     \
198             else                                                        \
199                 echo "Your $(econfig) doesn't work";                    \
200                 src/util/pconfig >$(econfig).dist;                      \
201             fi;                                                         \
202             if [ -e $(econfig).dist ]; then                             \
203                 echo "Check out $(econfig).dist";                       \
204             fi;                                                         \
205         else                                                            \
206             src/util/pconfig >$(econfig);                               \
207         fi
208
209 .PHONY: installdirs
210 installdirs:
211         mkdir -p $(sbindir) $(bindir) $(builtindir) $(einfodir) $(mandir)/man6 $(dir $(econfig)) $(gamedir)
212
213 .PHONY: install-html
214 install-html: html
215         mkdir -p $(ehtmldir)
216         $(INSTALL_DATA) $(info.html) $(ehtmldir)
217
218 .PHONY: uninstall
219 uninstall:
220         rm -f $(addprefix $(sbindir)/, $(notdir $(util) $(server)))
221         rm -f $(addprefix $(bindir)/, $(notdir $(client)))
222         rm -rf $(builtindir) $(einfodir)
223         rm -f $(addprefix $(mandir)/man6/, $(notdir $(man6)))
224         @echo "$(dir $(econfig)) and $(gamedir) not removed, you may wish to remove it manually."
225
226 .PHONY: dist
227 dist: dist-source dist-client dist-info
228
229
230 ### Implicit rules
231
232 # Compile with dependencies as side effect, i.e. create %.d in
233 # addition to %.o.
234 ifeq ($(how_to_dep),fast)
235 %.o: %.c
236         $(COMPILE.c) -MT $@ -MMD -MP $(OUTPUT_OPTION) $<
237 endif
238 ifeq ($(how_to_dep),depcomp)
239 %.o: %.c
240         source='$<' object='$@' depfile='$(@:.o=.d)' $(CCDEPMODE) $(depcomp) \
241         $(COMPILE.c) $(OUTPUT_OPTION) $<
242 endif
243 # Cancel the rule to compile %.c straight to %, it interferes with
244 # automatic dependency generation
245 %: %.c
246
247 # Work around MinGW Make's broken built-in link rule:
248 %$(EXEEXT): %.o
249         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
250
251
252 info.nr/%: info/%.t
253         $(NROFF) $(filter %.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@
254 # Pipes in make are a pain.  Catch obvious errors:
255         @test -s $@
256
257 info.html/%.html: info/%.t
258         perl $(filter %.pl, $^) $< >$@
259
260
261 ### Explicit rules
262
263 # Compilation
264
265 $(server): $(filter src/server/% src/lib/commands/% src/lib/player/% src/lib/subs/% src/lib/update/%, $(obj)) $(empth_obj) $(empth_lib) $(libs)
266         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
267
268 $(client): $(filter src/client/%, $(obj)) src/lib/global/version.o
269         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
270 ifeq ($(empthread),Windows)
271 $(client): src/lib/w32/getopt.o
272 endif
273
274 $(util): $(libs)
275
276 lib/libas.a: $(filter src/lib/as/%, $(obj))
277 lib/libcommon.a: $(filter src/lib/common/%, $(obj))
278 lib/libgen.a: $(filter src/lib/gen/%, $(obj))
279 lib/libglobal.a: $(filter src/lib/global/%, $(obj))
280 lib/liblwp.a: $(filter src/lib/lwp/%, $(obj))
281 lib/libw32.a: $(filter src/lib/w32/%, $(obj))
282
283 $(libs) $(empth_lib):
284         $(AR) rc $@ $?
285         $(RANLIB) $@
286
287 # Info formatting
288
289 # FIXME Remaking subjects doesn't work correctly when info sources get
290 # removed or subjects get dropped.
291
292 subjects.mk: info/findsubj.pl $(tsrc)
293         perl $(srcdir)/info/findsubj.pl $(filter %.t, $^)
294
295 $(tsubj): info/mksubj.pl
296         perl $(srcdir)/info/mksubj.pl $@ $(filter %.t, $^)
297
298 $(ttop): $(tsubj)
299         perl $(srcdir)/info/mktop.pl $@ $(filter %.t, $^)
300
301 info.nr/all: $(filter-out info.nr/all, $(info.nr))
302         >$@
303         (cd info.nr && LC_ALL=C ls -C $(info)) >>$@
304
305 info.html/all.html: info.nr/all info/ls2html.pl
306         expand $< | perl $(srcdir)/info/ls2html.pl >$@
307
308 $(info.nr): info/CRT.MAC info/INFO.MAC info/Blank.awk
309
310 $(subjects.html) info.html/TOP.html: info/subj2html.pl
311 $(topics.html): info/emp2html.pl
312
313 info.ps: info/TROFF.MAC info/INFO.MAC $(ttop) $(tsubj) $(tsrc)
314         groff $^ >$@
315
316 # List of source files
317
318 # Note: $(srcdir)/sources.mk is only used when the source tree came
319 # from a tarball rather than git.  The following rules create a
320 # sources.mk to put into the tarball.  It is not used in this build.
321
322 ifeq ($(revctrl),git)
323 sources.mk:
324         echo "src := $(src)" >sources.mk
325 else
326 ifneq ($(srcdir),.)
327 sources.mk: $(srcdir)/sources.mk
328         cp -f $^ $@
329 endif
330 endif
331
332 # Distributing
333
334 .PHONY: dist-source
335 dist-source: $(src_distgen) $(bld_distgen)
336         $(tarball) $(TARNAME)-$(VERSION) $(bld_distgen) -C $(srcdir) $(src_distgen) $(src)
337
338 .PHONY: dist-client
339 dist-client: $(cli_distgen)
340         $(tarball) $(TARNAME)-client-$(VERSION)                         \
341         -C $(srcdir)/src/client                                         \
342                 $(notdir $(filter src/client/%, $(src)) $(cli_distgen)) \
343         -C $(srcdir)/include proto.h version.h                          \
344         -C $(srcdir)/src/lib/global version.c                           \
345         -C $(srcdir)/src/lib/w32 getopt.h getopt.c                      \
346         -C $(srcdir)/man empire.6                                       \
347         -C $(srcdir) COPYING INSTALL install-sh
348
349 .PHONY: dist-info
350 dist-info: info html
351         $(tarball) $(TARNAME)-info-text-$(VERSION) -C info.nr $(info)
352         $(tarball) $(TARNAME)-info-html-$(VERSION) -C info.html $(addsuffix .html, $(info))
353
354 ifneq ($(deps),)
355 -include $(deps)
356 endif
357
358
359 # Automatic remake of configuration
360 # See (autoconf)Automatic Remaking.
361 # This requires sufficiently recent versions of autoconf and automake
362
363 $(srcdir)/configure: configure.ac aclocal.m4
364         cd $(srcdir) && autoconf
365
366 # autoheader might not change config.h.in, so touch a stamp file.
367 $(srcdir)/config.h.in: stamp-h.in
368 $(srcdir)/stamp-h.in: configure.ac aclocal.m4
369         cd $(srcdir) && autoheader
370         touch $@
371
372 $(srcdir)/aclocal.m4: $(filter m4/%.m4, $(src))
373         cd $(srcdir) && aclocal -I m4
374
375 # config.status might not change config.h; use the stamp file.
376 config.h: stamp-h
377 stamp-h: config.h.in config.status
378         ./config.status config.h stamp-h
379
380 GNUmakefile: GNUmakefile.in config.status
381         ./config.status $@
382
383 config.status: configure
384         ./config.status --recheck
385
386 src/lib/global/path.c src/client/ipglob.c: %: %.in GNUmakefile Make.mk
387         $(subst.in) <$< >$@
388
389
390 # Make files for standalone client distribution
391
392 $(srcdir)/src/client/configure: src/client/configure.ac src/client/aclocal.m4
393         cd $(dir $@) && autoconf
394
395 $(srcdir)/src/client/config.h.in: src/client/configure.ac src/client/aclocal.m4
396         cd $(dir $@) && autoheader
397         touch $@
398
399 $(srcdir)/src/client/aclocal.m4: m4/lib_socket_nsl.m4
400         cp -f $< $@