]> git.pond.sub.org Git - empserver/blob - GNUmakefile.in
Compute distribution paths center by center
[empserver] / GNUmakefile.in
1 #
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2011, 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 VERSION := @PACKAGE_VERSION@
38
39 CC := @CC@
40 have_gcc := @GCC@
41 CFLAGS := @CFLAGS@
42 CPPFLAGS := @CPPFLAGS@ @DEFS@
43 LDFLAGS := @LDFLAGS@
44 LIBOBJS := @LIBOBJS@
45 LDLIBS := -lm
46 empthread := @empthread@
47 ifeq ($(empthread),POSIX)
48 CC := @PTHREAD_CC@
49 CFLAGS := $(CFLAGS) @PTHREAD_CFLAGS@
50 LDFLAGS := $(LDFLAGS) @PTHREAD_CFLAGS@
51 LDLIBS := @PTHREAD_LIBS@ $(LDLIBS)
52 endif
53 ifeq ($(empthread),Windows)
54 CFLAGS := $(CFLAGS) -mthreads
55 endif
56 LIBS_client := @LIBS_client@ $(LDLIBS)
57 LIBS_server := @LIBS_server@ $(LDLIBS)
58 LDLIBS := @LIBS@ $(LDLIBS)
59 CCDEPMODE := @CCDEPMODE@
60 @am__fastdepCC_TRUE@how_to_dep := fast
61 @am__fastdepCC_FALSE@@AMDEP_TRUE@how_to_dep := depcomp
62 EXEEXT := @EXEEXT@
63 ifneq (@OBJEXT@,o)
64 $(error This makefile can't cope with your compiler's object file names)
65 endif
66
67 AWK := @AWK@
68 INSTALL := @INSTALL@
69 INSTALL_DATA := @INSTALL_DATA@
70 INSTALL_PROGRAM := @INSTALL_PROGRAM@
71 NROFF := @NROFF@
72 RANLIB := @RANLIB@
73
74 prefix := @prefix@
75 exec_prefix := @exec_prefix@
76 bindir := @bindir@
77 sbindir := @sbindir@
78 datarootdir := @datarootdir@
79 datadir := @datadir@
80 localstatedir := @localstatedir@
81 mandir := @mandir@
82 sysconfdir := @sysconfdir@
83
84 srcdir := @srcdir@
85 VPATH := @srcdir@
86
87 revctrl := @revctrl@
88
89 EMPIREHOST := @EMPIREHOST@
90 EMPIREPORT := @EMPIREPORT@
91
92 include $(srcdir)/Make.mk