]> git.pond.sub.org Git - empserver/blob - Make.mk
(builtindir): New econfig key, variable and make variable.
[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
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 gamedir := $(localstatedir)/empire
69 builtindir := $(datadir)/empire/builtin
70 einfodir := $(datadir)/empire/info.nr
71 ehtmldir := $(datadir)/empire/info.html
72
73 # How to substitute Autoconf output variables
74 # Recursively expanded so that $@ and $< work.
75 subst.in = sed \
76         -e 's?@configure_input\@?$(notdir $@).  Generated from $(notdir $<) by GNUmakefile.?g' \
77         -e 's?@builtindir\@?$(builtindir)?g'    \
78         -e 's?@econfig\@?$(econfig)?g'          \
79         -e 's?@einfodir\@?$(einfodir)?g'        \
80         -e 's?@gamedir\@?$(gamedir)?g'          \
81         -e 's/@EMPIREHOST\@/$(EMPIREHOST)/g'    \
82         -e 's/@EMPIREPORT\@/$(EMPIREPORT)/g'
83
84 # Generated files
85 # See `Cleanliness' below
86 # sources.mk subjects.mk
87 # Generated by Autoconf, not distributed:
88 ac := config.h config.log config.status stamp-h
89 ac += $(basename $(filter %.in, $(src)))
90 ac += $(srcdir)/autom4te.cache $(srcdir)/src/client/autom4te.cache
91 # distributed by dist-source from $(srcdir):
92 acdist := aclocal.m4 config.h.in configure stamp-h.in
93 # distributed by dist-client from $(srcdir):
94 acdistcli := $(addprefix src/client/, aclocal.m4 config.h.in configure)
95 # Object files:
96 obj := $(csrc:.c=.o) $(filter %.o, $(ac:.c=.o))
97 # TODO AIX needs lwpInit.o lwpRestore.o lwpSave.o unless UCONTEXT
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), 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
116 empth_lib := lib/liblwp.a
117 endif
118 ifeq ($(empthread),POSIX)
119 empth_obj := src/lib/empthread/pthread.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 # Cleanliness
128 # Each generated file should be in one of the following sets.
129 # Removed by clean:
130 clean := $(obj) $(deps) $(libs) $(util) $(client) $(server) $(tsubj)    \
131 $(ttop) $(info.nr) $(info.html) $(empth_obj) $(empth_lib)
132 # Removed by distclean:
133 distclean := $(ac) subjects.mk
134 # Distributed by dist-source from $(srcdir)
135 src_distgen := $(acdist)
136 # Distributed by dist-source from .
137 bld_distgen := sources.mk
138 # Distributed by dist-client from $(srcdir)/src/client
139 cli_distgen := $(acdistcli)
140
141 # Compiler flags
142 CPPFLAGS += -I$(srcdir)/include -I.
143 ifeq ($(have_gcc),yes)
144 CFLAGS += -fno-builtin-carg     # conflicts with our carg()
145 CFLAGS += -fno-common
146 CFLAGS += -Wall -W -Wno-unused -Wpointer-arith -Wstrict-prototypes      \
147 -Wmissing-prototypes -Wnested-externs -Wredundant-decls
148 endif
149 LDLIBS += -lm
150
151 ### Advertized goals
152
153 .PHONY: all
154 all: $(util) $(client) $(server) info
155
156 .PHONY: info html
157 info: $(info.nr)
158 html: $(info.html)
159
160 .PHONY: clean
161 clean:
162         rm -f $(clean)
163
164 .PHONY: distclean
165 distclean: clean
166         rm -rf $(distclean)
167
168 .PHONY: install
169 install: all installdirs
170         $(INSTALL_PROGRAM) $(util) $(server) $(sbindir)
171         $(INSTALL_PROGRAM) $(client) $(bindir)
172         $(INSTALL_DATA) $(info.nr) $(einfodir)
173         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man1)) $(mandir)/man1
174         $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(mandir)/man6
175         if test -e $(econfig); then                                     \
176             if src/util/pconfig $(econfig) >$(econfig).new; then        \
177                 if cmp -s $(econfig) $(econfig).new; then               \
178                     rm $(econfig).new;                                  \
179                 else                                                    \
180                     echo "Check out $(econfig).new";                    \
181                 fi                                                      \
182             else                                                        \
183                 echo "Your $(econfig) doesn't work";                    \
184             fi                                                          \
185         else                                                            \
186             src/util/pconfig >$(econfig);                               \
187         fi
188
189 .PHONY: installdirs
190 installdirs:
191         mkdir -p $(bindir) $(sbindir) $(gamedir) $(einfodir) $(mandir)/man1 $(mandir)/man6 $(dir $(econfig))
192
193 .PHONY: install-html
194 install-html: html | $(ehtmldir)
195         $(INSTALL_DATA) $(info.html) $(ehtmldir)
196
197 .PHONY: uninstall
198 uninstall:
199         false # FIXME
200
201 .PHONY: dist
202 dist: dist-source dist-client dist-info
203
204
205 ### Implicit rules
206
207 # Compile with dependencies as side effect, i.e. create %.d in
208 # addition to %.o.
209 ifeq ($(how_to_dep),fast)
210 %.o: %.c
211         $(COMPILE.c) -MT $@ -MMD -MP $(OUTPUT_OPTION) $<
212 endif
213 ifeq ($(how_to_dep),depcomp)
214 %.o: %.c
215         source='$<' object='$@' depfile='$(@:.o=.d)' $(CCDEPMODE) $(depcomp) \
216         $(COMPILE.c) $(OUTPUT_OPTION) $<
217 endif
218 # Cancel the rule to compile %.c straight to %, it interferes with
219 # automatic dependency generation
220 %: %.c
221
222 # Work around MinGW Make's broken built-in link rule:
223 %$(EXEEXT): %.o
224         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
225
226
227 info.nr/%: info/%.t
228         $(NROFF) -I $(srcdir)/info $(filter %/CRT.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@
229 # FIXME AT&T nroff doesn't grok -I
230
231 info.html/%.html: info/%.t
232         perl $(filter %.pl, $^) $< >$@
233
234
235 ### Explicit rules
236
237 # Compilation
238
239 $(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)
240         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
241
242 $(client): $(filter src/client/%, $(obj)) $(termlibs)
243         $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
244
245 $(util): $(libs)
246
247 lib/libcommon.a: $(filter src/lib/common/%, $(obj))
248 lib/libgen.a: $(filter src/lib/gen/%, $(obj))
249 lib/libglobal.a: $(filter src/lib/global/%, $(obj))
250 lib/liblwp.a: $(filter src/lib/lwp/%, $(obj))
251
252 $(libs) $(empth_lib): | lib
253         $(AR) rc $@ $?
254         $(RANLIB) $@
255
256 # Info formatting
257
258 subjects.mk: $(tsrc) info/findsubj.pl sources.mk
259         perl $(srcdir)/info/findsubj.pl
260 # If sources.mk is out of date, $(tsrc) is.  If it contains files that
261 # went away, make can't remake subjects.mk.  Tell it to ignore such
262 # missing files:
263 $(tsrc):
264
265 $(tsubj): info/mksubj.pl
266         perl $(srcdir)/info/mksubj.pl $@ $(filter %.t, $^)
267
268 $(ttop): $(tsubj)
269         perl $(srcdir)/info/mktop.pl $@ $(filter %.t, $^)
270
271 info.nr/all: $(filter-out info.nr/all, $(info.nr))
272         (cd info.nr && ls -C $(info)) >$@
273 # FIXME shouldn't use ls
274
275 info.html/all.html: $(filter-out info.html/all.html, $(info.html)) info/ls2html.pl
276         (cd info.html && ls -C $(notdir $(info.html))) | expand | perl $(filter %.pl, $^) >$@
277 # FIXME shouldn't use ls
278
279 $(info.nr): info/CRT.MAC info/INFO.MAC info/Blank.awk | info.nr
280
281 $(subjects.html) info.html/TOP.html: info/subj2html.pl | info.html
282 $(topics.html): info/emp2html.pl | info.html
283
284 info.nr info.html lib:
285         mkdir -p $@
286
287 ifeq ($(cvs_controlled),yes)
288 # Find files and directories under CVS control
289 sources.mk: $(scripts)/cvsfiles.awk $(addprefix $(srcdir)/, $(addsuffix CVS/Entries, $(dirs)))
290         echo 'src := ' `cd $(srcdir) && $(AWK) -f src/scripts/cvsfiles.awk` >$@
291 else
292 sources.mk: $(srcdir)/sources.mk
293         cp -f $^ $@
294 endif
295
296 # Distributing
297
298 .PHONY: dist-source
299 dist-source: $(src_distgen) $(bld_distgen)
300         $(tarball) $(TARNAME)-$(VERSION) $(bld_distgen) -C $(srcdir) $(src_distgen) $(src)
301
302 .PHONY: dist-client
303 dist-client: $(cli_distgen)
304         $(tarball) $(TARNAME)-client-$(VERSION)                         \
305         -C $(srcdir)/src/client                                         \
306                 $(notdir $(filter src/client/%, $(src)) $(cli_distgen)) \
307         -C $(srcdir)/include proto.h                                    \
308         -C $(srcdir)/man empire.6                                       \
309         -C $(srcdir) COPYING INSTALL install-sh
310
311 .PHONY: dist-info
312 dist-info: info html
313         $(tarball) $(TARNAME)-info-text-$(VERSION) -C info.nr $(info)
314         $(tarball) $(TARNAME)-info-html-$(VERSION) -C info.html $(addsuffix .html, $(info))
315
316 ifneq ($(deps),)
317 -include $(deps)
318 endif
319
320
321 # Automatic remake of configuration
322 # See (autoconf)Automatic Remaking.
323 # This requires sufficiently recent versions of autoconf and automake
324
325 $(srcdir)/configure: configure.ac aclocal.m4
326         cd $(srcdir) && autoconf
327
328 # autoheader might not change config.h.in, so touch a stamp file.
329 $(srcdir)/config.h.in: stamp-h.in
330 $(srcdir)/stamp-h.in: configure.ac aclocal.m4
331         cd $(srcdir) && autoheader
332         >$@
333
334 $(srcdir)/aclocal.m4: $(filter m4/%.m4, $(src))
335         cd $(srcdir) && aclocal -I m4
336
337 # config.status might not change config.h; use the stamp file.
338 config.h: stamp-h
339 stamp-h: config.h.in config.status
340         ./config.status config.h stamp-h
341
342 GNUmakefile: GNUmakefile.in config.status
343         ./config.status $@
344
345 config.status: configure
346         ./config.status --recheck
347
348 src/lib/global/path.c src/client/ipglob.c: %: %.in GNUmakefile Make.mk
349         $(subst.in) <$< >$@
350
351
352 # Make files for standalone client distribution
353
354 $(srcdir)/src/client/configure: src/client/configure.ac src/client/aclocal.m4
355         cd $(dir $@) && autoconf
356
357 $(srcdir)/src/client/config.h.in: src/client/configure.ac src/client/aclocal.m4
358         cd $(dir $@) && autoheader
359         touch $@
360
361 $(srcdir)/src/client/aclocal.m4: m4/lib_socket_nsl.m4
362         cp -f $< $@