ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/Makefile.am
Revision: 1.17
Committed: Wed Jun 30 20:51:02 2010 UTC (13 years, 11 months ago) by root
Branch: MAIN
Changes since 1.16: +1 -0 lines
Log Message:
implement isolation remover, moved layout functions to their own file

File Contents

# User Rev Content
1 root 1.1 #
2 root 1.10 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 root 1.8 #
4 root 1.16 # Copyright (©) 2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.15 # Copyright (©) 1992 Frank Tore Johansen
6     # Copyright (©) 1998 Mark Wedel
7 root 1.8 # Copyright (©) 2007 Marc Alexander Lehmann
8     #
9 root 1.13 # 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 root 1.8 #
14 root 1.9 # 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 root 1.8 #
19 root 1.13 # 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 root 1.8 #
23 root 1.10 # The authors can be reached via e-mail to <support@deliantra.net>
24 root 1.1 #
25    
26     noinst_LIBRARIES = librandom_map.a
27    
28 elmex 1.3 librandom_map_a_SOURCES = random_map.C \
29     room_gen_onion.C \
30     room_gen_spiral.C \
31     maze_gen.C \
32     floor.C \
33     wall.C \
34     monster.C \
35     door.C \
36     decor.C \
37     exit.C \
38     treasure.C \
39     special.C \
40     rogue_layout.C \
41     snake.C \
42     square_spiral.C \
43 root 1.17 layout.C \
44 root 1.11 expand2x.C
45 root 1.1
46 root 1.11 EXTRA_DIST = random_map.h rproto.h Notes
47 root 1.1
48 pippijn 1.2 MAINTAINERCLEANFILES = Makefile.in
49    
50 root 1.1 AM_CPPFLAGS = -I$(top_srcdir)/include
51    
52     LEX_OUTPUT_ROOT = lex.rmap
53     AM_LFLAGS = -Prmap -i
54    
55 root 1.4 #random_map_LDADD = ../common/libcross.a librandom_map.a
56 root 1.1