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