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 39 40 41 42 43 44 45 46 47 48 49 50
|
noinst_LIBRARIES = libcross.a
libcross_a_SOURCES = \
anim.c \
arch.c\
arch_types_valid.c \
artifact.c\
button.c\
cf_random.c \
dialog.c \
exp.c\
friend.c\
holy.c\
info.c\
image.c \
init.c\
item.c\
languages.c\
links.c\
living.c\
loader.l\
logger.c\
los.c\
map.c\
ob_methods.c \
ob_types.c \
object.c\
output_file.c \
path.c\
porting.c\
player.c\
re-cmp.c\
readable.c\
recipe.c\
region.c\
shstr.c\
stringbuffer.c\
time.c\
treasure.c\
utils.c
EXTRA_DIST = README is_valid_types_gen.pl
AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
-DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\"
AM_LFLAGS = -i -B
CLEANFILES = loader.c arch_types_valid.c
arch_types_valid.c: is_valid_types_gen.pl ../include/object.h
$(PERL) is_valid_types_gen.pl
|