ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/Makefile.am
Revision: 1.11
Committed: Fri Apr 11 21:09:53 2008 UTC (16 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-2_5, rel-2_52
Changes since 1.10: +3 -5 lines
Log Message:
*** empty log message ***

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
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your 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 GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #
22 # The authors can be reached via e-mail to <support@deliantra.net>
23 #
24
25 #pkglib_PROGRAMS = random_map
26
27 #random_map_SOURCES = standalone.C
28
29 noinst_LIBRARIES = librandom_map.a
30
31 librandom_map_a_SOURCES = random_map.C \
32 room_gen_onion.C \
33 room_gen_spiral.C \
34 maze_gen.C \
35 floor.C \
36 wall.C \
37 monster.C \
38 door.C \
39 decor.C \
40 exit.C \
41 treasure.C \
42 special.C \
43 style.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