ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/Makefile.am
Revision: 1.13
Committed: Mon Oct 12 14:00:58 2009 UTC (14 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-2_82, rel-2_81
Changes since 1.12: +7 -6 lines
Log Message:
clarify license

File Contents

# Content
1 #
2 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 #
4 # Copyright (©) 2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 # Copyright (©) 1992,2007 Frank Tore Johansen
6 # Copyright (©) 1998,2007 Mark Wedel
7 # Copyright (©) 2007 Marc Alexander Lehmann
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 #pkglib_PROGRAMS = random_map
27
28 #random_map_SOURCES = standalone.C
29
30 noinst_LIBRARIES = librandom_map.a
31
32 librandom_map_a_SOURCES = random_map.C \
33 room_gen_onion.C \
34 room_gen_spiral.C \
35 maze_gen.C \
36 floor.C \
37 wall.C \
38 monster.C \
39 door.C \
40 decor.C \
41 exit.C \
42 treasure.C \
43 special.C \
44 rogue_layout.C \
45 snake.C \
46 square_spiral.C \
47 expand2x.C
48
49 EXTRA_DIST = random_map.h rproto.h Notes
50
51 MAINTAINERCLEANFILES = Makefile.in
52
53 AM_CPPFLAGS = -I$(top_srcdir)/include
54
55 LEX_OUTPUT_ROOT = lex.rmap
56 AM_LFLAGS = -Prmap -i
57
58 #random_map_LDADD = ../common/libcross.a librandom_map.a
59