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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
INCLUDES = -I$(top_srcdir)
lib_LTLIBRARIES = liberis-1.2.la
liberis_1_2_la_LDFLAGS = -version-info @ERIS_VERSION_INFO@
if HAVE_ATLAS_JANUS
ATLAS_JANUS_CPP = UIFactory.cpp
ATLAS_JANUS_H = UIFactory.h
else
ATLAS_JANUS_CPP =
ATLAS_JANUS_H =
endif
liberis_1_2_la_SOURCES = \
Exceptions.cpp \
Entity.cpp \
World.cpp \
Lobby.cpp \
Player.cpp \
Dispatcher.cpp \
BaseConnection.cpp \
Connection.cpp \
Utils.cpp \
Types.cpp \
DebugDispatcher.cpp \
Room.cpp \
Person.cpp \
Metaserver.cpp \
MetaQuery.h MetaQuery.cpp \
ServerInfo.cpp \
Wait.cpp \
Timeout.cpp \
ArgumentDispatcher.cpp \
TypeInfo.cpp \
ClassDispatcher.cpp \
InvisibleEntityCache.cpp \
InvisibleEntityCache.h \
PollDefault.cpp \
Log.cpp \
Avatar.cpp \
typeService.cpp \
$(ATLAS_JANUS_CPP)
liberisdir = $(includedir)/Eris-1.2/Eris
liberis_HEADERS = \
Exceptions.h \
Lobby.h \
Factory.h \
Entity.h \
World.h \
Dispatcher.h \
Player.h \
Types.h \
Utils.h \
ClassDispatcher.h \
TypeDispatcher.h \
SignalDispatcher.h \
BaseConnection.h \
Connection.h \
DebugDispatcher.h \
EncapDispatcher.h \
OpDispatcher.h \
Room.h \
Person.h \
Metaserver.h \
ServerInfo.h \
IdDispatcher.h \
Timeout.h \
Timestamp.h \
ArgumentDispatcher.h \
TypeInfo.h \
Wait.h \
Property.h \
Poll.h \
PollDefault.h \
atlas_utils.h \
Log.h \
Avatar.h \
typeService.h \
$(ATLAS_JANUS_H)
|