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