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 51 52 53 54 55
|
noinst_LIBRARIES = libcommon.a libtools.a
AM_CPPFLAGS = -I$(top_srcdir) -I${top_builddir} $(BINRELOC_CFLAGS) \
-DDATADIR=\"@datadir@\" \
-DSYSCONFDIR=\"@sysconfdir@\" \
-DLOCALSTATEDIR=\"@localstatedir@\"
libcommon_a_SOURCES = const.cpp const.h \
binreloc.c binreloc.h \
newid.cpp id.cpp id.h \
log.cpp log.h \
debug.cpp debug.h \
random.h nls.h \
compose.hpp \
types.h op_switch.h \
type_utils.cpp type_utils.h \
utils.cpp utils.h \
type_utils_impl.h \
operations.cpp \
custom.cpp custom.h \
client_socket.cpp sockets.h \
globals.cpp globals.h \
Database.cpp Database.h \
system.cpp system.h \
system_net.cpp system_uid.cpp \
system_prefix.cpp \
serialno.cpp serialno.h \
TypeNode.cpp TypeNode.h \
Inheritance.cpp Inheritance.h \
Property.cpp Property_impl.h Property.h \
PropertyFactory.cpp PropertyFactory.h \
PropertyFactory_impl.h \
PropertyManager.cpp PropertyManager.h \
OperationRouter.cpp OperationRouter.h \
Router.cpp Router.h \
BaseWorld.cpp BaseWorld.h \
AtlasFileLoader.cpp AtlasFileLoader.h \
Monitors.cpp Monitors.h \
Variable.cpp Variable.h \
AtlasStreamClient.cpp AtlasStreamClient.h \
ClientTask.cpp ClientTask.h \
SystemTime.cpp SystemTime.h \
EntityKit.cpp EntityKit.h \
ScriptKit.cpp ScriptKit.h \
TaskKit.cpp TaskKit.h \
CommSocket.cpp CommSocket.h \
Link.cpp Link.h \
atlas_helpers.cpp atlas_helpers.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 Teleport.h \
Shaker.h Shaker.cpp Commune.h Think.h
libtools_a_SOURCES = Storage.cpp Storage.h \
FormattedXMLWriter.cpp FormattedXMLWriter.h
|