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