ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/Makefile.am
Revision: 1.12
Committed: Sun May 4 14:12:37 2008 UTC (16 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-2_80, rel-2_6, rel-2_7, rel-2_72, rel-2_73, rel-2_71, rel-2_76, rel-2_77, rel-2_74, rel-2_75, rel-2_54, rel-2_55, rel-2_56, rel-2_79, rel-2_53, rel-2_78, rel-2_61
Changes since 1.11: +0 -1 lines
Log Message:
lotsa

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.11 # Copyright (©) 2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.8 # Copyright (©) 1992,2007 Frank Tore Johansen
6     # Copyright (©) 1998,2007 Mark Wedel
7     # Copyright (©) 2007 Marc Alexander Lehmann
8     #
9 root 1.10 # Deliantra is free software: you can redistribute it and/or modify
10 root 1.9 # 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 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.9 # 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 root 1.8 #
22 root 1.10 # The authors can be reached via e-mail to <support@deliantra.net>
23 root 1.1 #
24    
25 root 1.4 #pkglib_PROGRAMS = random_map
26 root 1.1
27 root 1.4 #random_map_SOURCES = standalone.C
28 root 1.1
29     noinst_LIBRARIES = librandom_map.a
30    
31 elmex 1.3 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     rogue_layout.C \
44     snake.C \
45     square_spiral.C \
46 root 1.11 expand2x.C
47 root 1.1
48 root 1.11 EXTRA_DIST = random_map.h rproto.h Notes
49 root 1.1
50 pippijn 1.2 MAINTAINERCLEANFILES = Makefile.in
51    
52 root 1.1 AM_CPPFLAGS = -I$(top_srcdir)/include
53    
54     LEX_OUTPUT_ROOT = lex.rmap
55     AM_LFLAGS = -Prmap -i
56    
57 root 1.4 #random_map_LDADD = ../common/libcross.a librandom_map.a
58 root 1.1