]> git.pond.sub.org Git - empserver/blob - GNUmakefile.in
fairland: Fuse sectx[], secty[] into sect[]
[empserver] / GNUmakefile.in
1 #
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2020, Dave Pare, Jeff Bailey, Thomas Ruschak,
4 #                 Ken Stevens, Steve McClure, Markus Armbruster
5 #
6 #   Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18 #
19 #   ---
20 #
21 #   See files README, COPYING and CREDITS in the root of the source
22 #   tree for related information and legal notices.  It is expected
23 #   that future projects/authors will amend these files as needed.
24 #
25 #   ---
26 #
27 #   @configure_input@
28 #   GNUmakefile.in: Makefile template for configure
29 #
30 #   Known contributors to this file:
31 #      Markus Armbruster, 2005-2009
32 #
33
34 # The real meat is in Make.mk, which see.
35
36 TARNAME := @PACKAGE_TARNAME@
37
38 CC := @CC@
39 CFLAGS := @CFLAGS@
40 CPPFLAGS := @CPPFLAGS@ @DEFS@
41 LDFLAGS := @LDFLAGS@
42 LIBOBJS := @LIBOBJS@
43 LDLIBS := -lm
44 empthread := @empthread@
45 ifeq ($(empthread),POSIX)
46 CC := @PTHREAD_CC@
47 CFLAGS := $(CFLAGS) @PTHREAD_CFLAGS@
48 LDFLAGS := $(LDFLAGS) @PTHREAD_CFLAGS@
49 LDLIBS := @PTHREAD_LIBS@ $(LDLIBS)
50 endif
51 ifeq ($(empthread),Windows)
52 CFLAGS := $(CFLAGS) -mthreads
53 endif
54 LIBS_client := @LIBS_client@ $(LDLIBS)
55 LIBS_server := @LIBS_server@ $(LDLIBS)
56 LDLIBS := @LIBS@ $(LDLIBS)
57 CCDEPMODE := @CCDEPMODE@
58 @am__fastdepCC_TRUE@how_to_dep := fast
59 @am__fastdepCC_FALSE@@AMDEP_TRUE@how_to_dep := depcomp
60 EXEEXT := @EXEEXT@
61 ifneq (@OBJEXT@,o)
62 $(error This makefile can't cope with your compiler's object file names)
63 endif
64
65 AWK := @AWK@
66 INSTALL := @INSTALL@
67 INSTALL_DATA := @INSTALL_DATA@
68 INSTALL_PROGRAM := @INSTALL_PROGRAM@
69 NROFF := @NROFF@
70 RANLIB := @RANLIB@
71
72 prefix := @prefix@
73 exec_prefix := @exec_prefix@
74 bindir := @bindir@
75 sbindir := @sbindir@
76 datarootdir := @datarootdir@
77 datadir := @datadir@
78 localstatedir := @localstatedir@
79 mandir := @mandir@
80 sysconfdir := @sysconfdir@
81
82 srcdir := @srcdir@
83 VPATH := @srcdir@
84
85 revctrl := @revctrl@
86
87 EMPIREHOST := @EMPIREHOST@
88 EMPIREPORT := @EMPIREPORT@
89
90 include $(srcdir)/Make.mk