]> git.pond.sub.org Git - empserver/blob - Make.mk
(mchr, plchr, lchr, nchr): Move initializer to new builtin config
[empserver] / Make.mk
1
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2006, 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 man1 := $(filter man/%.1, $(src))
54 man6 := $(filter man/%.6, $(src))
55 builtins := $(filter src/lib/global/%.config, $(src))
56
57 # Info topics and subjects
58 -include subjects.mk
59
60 # Abbreviations
61 topics := $(patsubst %.t,%,$(notdir $(tsrc)))
62 info := $(topics) $(subjects) all TOP
63 subjects.html := $(addprefix info.html/, $(addsuffix .html, $(subjects)))
64 topics.html := $(addprefix info.html/, $(addsuffix .html, $(topics)))
65 scripts = $(srcdir)/src/scripts
66 depcomp = $(SHELL) $(srcdir)/depcomp
67 tarball = $(SHELL) $(scripts)/tarball
68 econfig := $(sysconfdir)/empire/econfig
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 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), 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
117 empth_lib := lib/liblwp.a
118 endif
119 ifeq ($(empthread),POSIX)
120 empth_obj := src/lib/empthread/pthread.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
152 ### Advertized goals
153
154 .PHONY: all
155 all: $(util) $(client) $(server) info
156
157 .PHONY: info html
158 info: $(info.nr)
159 html: $(info.html)
160
161 .PHONY: clean
162 clean:
163         rm -f $(clean)
164
165 .PHONY: distclean
166 distclean: clean
167         rm -rf $(distclean)
168
169 .PHONY: install
170 install: all installdirs
171         $(INSTALL_PROGRAM) $(util) $(server) $(sbindir)
172         $(INSTALL_PROGRAM) $(client) $(bindir)
173         $(INSTALL) -m 444 $(builtins) $(builtindir)
174         $(INSTALL_DATA) $(info.nr) $(einfodir)
175         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man1)) $(mandir)/man1
176         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(mandir)/man6
177         if test -e $(econfig); then                                     \
178             if src/util/pconfig $(econfig) >$(econfig).new; then        \
179                 if cmp -s $(econfig) $(econfig).new; then               \
180                     rm $(econfig).new;                                  \
181                 else                                                    \
182                     echo "Check out $(econfig).new";                    \
183                 fi                                                      \
184             else                                                        \
185                 echo "Your $(econfig) doesn't work";                    \
186             fi                                                          \
187         else                                                            \
188             src/util/pconfig >$(econfig);                               \
189         fi
190
191 .PHONY: installdirs
192 installdirs:
193         mkdir -p $(sbindir) $(bindir) $(builtindir) $(einfodir) $(mandir)/man1 $(mandir)/man6 $(dir $(econfig)) $(gamedir)
194
195 .PHONY: install-html
196 install-html: html | $(ehtmldir)
197         $(INSTALL_DATA) $(info.html) $(ehtmldir)
198
199 .PHONY: uninstall
200 uninstall:
201         false # FIXME
202
203 .PHONY: dist
204 dist: dist-source dist-client dist-info
205
206
207 ### Implicit rules
208
209 # Compile with dependencies as side effect, i.e. create %.d in
210 # addition to %.o.
211 ifeq ($(how_to_dep),fast)
212 %.o: %.c
213         $(COMPILE.c) -MT $@ -MMD -MP $(OUTPUT_OPTION) $<
214 endif
215 ifeq ($(how_to_dep),depcomp)
216 %.o: %.c
217         source='$<' object='$@' depfile='$(@:.o=.d)' $(CCDEPMODE) $(depcomp) \
218         $(COMPILE.c) $(OUTPUT_OPTION) $<
219 endif
220 # Cancel the rule to compile %.c straight to %, it interferes with
221 # automatic dependency generation
222 %: %.c
223
224 # Work around MinGW Make's broken built-in link rule:
225 %$(EXEEXT): %.o
226         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
227
228
229 info.nr/%: info/%.t
230         $(NROFF) -I $(srcdir)/info $(filter %/CRT.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@
231 # FIXME AT&T nroff doesn't grok -I
232
233 info.html/%.html: info/%.t
234         perl $(filter %.pl, $^) $< >$@
235
236
237 ### Explicit rules
238
239 # Compilation
240
241 $(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)
242         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
243
244 $(client): $(filter src/client/%, $(obj)) $(termlibs)
245         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
246
247 $(util): $(libs)
248
249 lib/libcommon.a: $(filter src/lib/common/%, $(obj))
250 lib/libgen.a: $(filter src/lib/gen/%, $(obj))
251 lib/libglobal.a: $(filter src/lib/global/%, $(obj))
252 lib/liblwp.a: $(filter src/lib/lwp/%, $(obj))
253
254 $(libs) $(empth_lib): | lib
255         $(AR) rc $@ $?
256         $(RANLIB) $@
257
258 # Info formatting
259
260 subjects.mk: $(tsrc) info/findsubj.pl sources.mk
261         perl $(srcdir)/info/findsubj.pl
262 # If sources.mk is out of date, $(tsrc) is.  If it contains files that
263 # went away, make can't remake subjects.mk.  Tell it to ignore such
264 # missing files:
265 $(tsrc):
266
267 $(tsubj): info/mksubj.pl
268         perl $(srcdir)/info/mksubj.pl $@ $(filter %.t, $^)
269
270 $(ttop): $(tsubj)
271         perl $(srcdir)/info/mktop.pl $@ $(filter %.t, $^)
272
273 info.nr/all: $(filter-out info.nr/all, $(info.nr))
274         (cd info.nr && ls -C $(info)) >$@
275 # FIXME shouldn't use ls
276
277 info.html/all.html: $(filter-out info.html/all.html, $(info.html)) info/ls2html.pl
278         (cd info.html && ls -C $(notdir $(info.html))) | expand | perl $(filter %.pl, $^) >$@
279 # FIXME shouldn't use ls
280
281 $(info.nr): info/CRT.MAC info/INFO.MAC info/Blank.awk | info.nr
282
283 $(subjects.html) info.html/TOP.html: info/subj2html.pl | info.html
284 $(topics.html): info/emp2html.pl | info.html
285
286 info.nr info.html lib:
287         mkdir -p $@
288
289 ifeq ($(cvs_controlled),yes)
290 # Find files and directories under CVS control
291 sources.mk: $(scripts)/cvsfiles.awk $(addprefix $(srcdir)/, $(addsuffix CVS/Entries, $(dirs)))
292         echo 'src := ' `cd $(srcdir) && $(AWK) -f src/scripts/cvsfiles.awk` >$@
293 else
294 sources.mk: $(srcdir)/sources.mk
295         cp -f $^ $@
296 endif
297
298 # Distributing
299
300 .PHONY: dist-source
301 dist-source: $(src_distgen) $(bld_distgen)
302         $(tarball) $(TARNAME)-$(VERSION) $(bld_distgen) -C $(srcdir) $(src_distgen) $(src)
303
304 .PHONY: dist-client
305 dist-client: $(cli_distgen)
306         $(tarball) $(TARNAME)-client-$(VERSION)                         \
307         -C $(srcdir)/src/client                                         \
308                 $(notdir $(filter src/client/%, $(src)) $(cli_distgen)) \
309         -C $(srcdir)/include proto.h                                    \
310         -C $(srcdir)/man empire.6                                       \
311         -C $(srcdir) COPYING INSTALL install-sh
312
313 .PHONY: dist-info
314 dist-info: info html
315         $(tarball) $(TARNAME)-info-text-$(VERSION) -C info.nr $(info)
316         $(tarball) $(TARNAME)-info-html-$(VERSION) -C info.html $(addsuffix .html, $(info))
317
318 ifneq ($(deps),)
319 -include $(deps)
320 endif
321
322
323 # Automatic remake of configuration
324 # See (autoconf)Automatic Remaking.
325 # This requires sufficiently recent versions of autoconf and automake
326
327 $(srcdir)/configure: configure.ac aclocal.m4
328         cd $(srcdir) && autoconf
329
330 # autoheader might not change config.h.in, so touch a stamp file.
331 $(srcdir)/config.h.in: stamp-h.in
332 $(srcdir)/stamp-h.in: configure.ac aclocal.m4
333         cd $(srcdir) && autoheader
334         >$@
335
336 $(srcdir)/aclocal.m4: $(filter m4/%.m4, $(src))
337         cd $(srcdir) && aclocal -I m4
338
339 # config.status might not change config.h; use the stamp file.
340 config.h: stamp-h
341 stamp-h: config.h.in config.status
342         ./config.status config.h stamp-h
343
344 GNUmakefile: GNUmakefile.in config.status
345         ./config.status $@
346
347 config.status: configure
348         ./config.status --recheck
349
350 src/lib/global/path.c src/client/ipglob.c: %: %.in GNUmakefile Make.mk
351         $(subst.in) <$< >$@
352
353
354 # Make files for standalone client distribution
355
356 $(srcdir)/src/client/configure: src/client/configure.ac src/client/aclocal.m4
357         cd $(dir $@) && autoconf
358
359 $(srcdir)/src/client/config.h.in: src/client/configure.ac src/client/aclocal.m4
360         cd $(dir $@) && autoheader
361         touch $@
362
363 $(srcdir)/src/client/aclocal.m4: m4/lib_socket_nsl.m4
364         cp -f $< $@