File: Makefile.am

package info (click to toggle)
crossfire 1.75.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,168 kB
  • sloc: ansic: 83,169; sh: 4,659; perl: 1,736; lex: 1,443; makefile: 1,199; python: 43
file content (38 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
pkglibexec_PROGRAMS = random_map

random_map_SOURCES = main.c

noinst_LIBRARIES = librandom_map.a

librandom_map_a_SOURCES = \
	decor.c \
	door.c \
	exit.c \
	expand2x.c \
	floor.c \
	maze_gen.c \
	monster.c \
	random_map.c \
	reader.l \
	rogue_layout.c \
	room_gen_onion.c \
	room_gen_spiral.c \
	snake.c \
	special.c \
	square_spiral.c \
	style.c  \
	treasure.c \
	wall.c

EXTRA_DIST = \
	README \
	main.c

AM_CPPFLAGS = -I$(top_srcdir)/include -I${top_srcdir}/include/random_maps

LEX_OUTPUT_ROOT = lex.rmap
AM_LFLAGS = -Prmap -i

random_map_LDADD = ../common/libcross.a librandom_map.a

CLEANFILES = reader.c