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
|
noinst_LIBRARIES = libcommon.a libtools.a
if BIN_RELOC
INCLUDES = -I$(top_srcdir) -I${top_builddir}
else
INCLUDES = -I$(top_srcdir) -I${top_builddir} \
-DDATADIR=\"@datadir@\" \
-DSYSCONFDIR=\"@sysconfdir@\" \
-DLOCALSTATEDIR=\"@localstatedir@\"
endif
libcommon_a_SOURCES = const.cpp const.h \
prefix.c prefix.h \
newid.cpp id.cpp id.h \
log.cpp log.h \
debug.cpp debug.h \
random.h nls.h \
compose.hpp \
types.h type_utils.h op_switch.h \
operations.cpp \
globals.cpp globals.h \
Database.cpp Database.h \
system.cpp system.h \
serialno.cpp serialno.h \
TypeNode.cpp TypeNode.h \
inheritance.cpp custom.cpp inheritance.h \
Property.cpp Property_impl.h Property.h \
DynamicProperty.cpp DynamicProperty.h \
DynamicProperty_impl.h \
PropertyFactory.cpp PropertyFactory.h \
PropertyFactory_impl.h \
PropertyManager.cpp PropertyManager.h \
OperationRouter.cpp OperationRouter.h \
Identified.cpp Identified.h \
BaseWorld.cpp BaseWorld.h \
AtlasFileLoader.cpp AtlasFileLoader.h \
Actuate.h Add.h Affect.h Attack.h Burn.h Connect.h \
Drop.h Eat.h Monitor.h Nourish.h \
Pickup.h Setup.h Tick.h Unseen.h Update.h
libtools_a_SOURCES = accountbase.cpp accountbase.h \
FormattedXMLWriter.cpp FormattedXMLWriter.h
|