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