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