ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/Makefile.am
Revision: 1.25
Committed: Sat Nov 17 23:39:59 2018 UTC (5 years, 5 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.24: +1 -0 lines
Log Message:
copyright update 2018

File Contents

# Content
1 #
2 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 #
4 # Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
5 # Copyright (©) 2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
6 # Copyright (©) 1992 Frank Tore Johansen
7 # Copyright (©) 2001 Mark Wedel
8 #
9 # Deliantra is free software: you can redistribute it and/or modify it under
10 # the terms of the Affero GNU General Public License as published by the
11 # Free Software Foundation, either version 3 of the License, or (at your
12 # option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the Affero GNU General Public License
20 # and the GNU General Public License along with this program. If not, see
21 # <http://www.gnu.org/licenses/>.
22 #
23 # The authors can be reached via e-mail to <support@deliantra.net>
24 #
25
26 noinst_LIBRARIES = libcross.a
27
28 libcross_a_SOURCES = \
29 anim.C\
30 arch.C\
31 button.C\
32 compat.C\
33 exp.C\
34 friend.C\
35 holy.C\
36 image.C \
37 init.C\
38 item.C\
39 links.C\
40 living.C\
41 loader.C\
42 logger.C\
43 los.C\
44 map.C\
45 object.C\
46 player.C\
47 readable.C\
48 recipe.C\
49 region.C\
50 shstr.C\
51 time.C\
52 treasure.C\
53 utils.C\
54 rng.C\
55 noise.C\
56 material.C
57
58 EXTRA_DIST = README
59
60 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure
61
62 AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
63 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\"
64 AM_LFLAGS = -i
65