| 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 |
rogue_layout.C \ |
| 44 |
snake.C \ |
| 45 |
square_spiral.C \ |
| 46 |
expand2x.C |
| 47 |
|
| 48 |
EXTRA_DIST = random_map.h rproto.h Notes |
| 49 |
|
| 50 |
MAINTAINERCLEANFILES = Makefile.in |
| 51 |
|
| 52 |
AM_CPPFLAGS = -I$(top_srcdir)/include |
| 53 |
|
| 54 |
LEX_OUTPUT_ROOT = lex.rmap |
| 55 |
AM_LFLAGS = -Prmap -i |
| 56 |
|
| 57 |
#random_map_LDADD = ../common/libcross.a librandom_map.a |
| 58 |
|