ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/Makefile.am
Revision: 1.10
Committed: Thu Nov 8 19:43:25 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-2_4, rel-2_32, rel-2_43, rel-2_42, rel-2_41
Changes since 1.9: +4 -4 lines
Log Message:
update copyrights and other minor stuff to deliantra

File Contents

# Content
1 #
2 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 #
4 # Copyright (©) 2006,2007 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 maze_gen.h random_map.h room_gen.h
49
50 EXTRA_DIST = maze_gen.h random_map.h room_gen.h\
51 rproto.h expand2x.h Notes
52
53 MAINTAINERCLEANFILES = Makefile.in
54
55 AM_CPPFLAGS = -I$(top_srcdir)/include
56
57 LEX_OUTPUT_ROOT = lex.rmap
58 AM_LFLAGS = -Prmap -i
59
60 #random_map_LDADD = ../common/libcross.a librandom_map.a
61