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

# Content
1 #
2 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 #
4 # Copyright (©) 2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 # Copyright (©) 1992 Frank Tore Johansen
6 # Copyright (©) 1998 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 noinst_LIBRARIES = librandom_map.a
27
28 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 layout.C \
44 expand2x.C
45
46 EXTRA_DIST = random_map.h rproto.h Notes
47
48 MAINTAINERCLEANFILES = Makefile.in
49
50 AM_CPPFLAGS = -I$(top_srcdir)/include
51
52 LEX_OUTPUT_ROOT = lex.rmap
53 AM_LFLAGS = -Prmap -i
54
55 #random_map_LDADD = ../common/libcross.a librandom_map.a
56