ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/Makefile.am
Revision: 1.26
Committed: Thu Nov 17 23:28:05 2016 UTC (7 years, 5 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.25: +0 -0 lines
State: FILE REMOVED
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,2009,2010,2011,2012,2013,2014,2015,2016 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
45 EXTRA_DIST = Notes
46
47 MAINTAINERCLEANFILES = Makefile.in
48
49 AM_CPPFLAGS = -I$(top_srcdir)/include
50