blob: dab8a0d985a735417fcf0c1bd80a615ccedd05aa (
plain)
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
85
86
87
|
METASOURCES = AUTO
AM_CPPFLAGS = -I$(top_srcdir)/src
noinst_LTLIBRARIES = libcore.la
noinst_HEADERS = \
application.h \
commandbuffer.h \
core.h \
cvar.h \
descriptions.h \
entity.h \
entityglobe.h \
entityprojectile.h \
extension.h \
func.h \
gameconnection.h \
gameinterface.h \
gameserver.h \
info.h \
inventory.h \
item.h \
level.h \
label.h \
loader.h \
message.h \
module.h \
netclient.h \
netconnection.h \
net.h \
netserver.h \
parser.h \
physics.h \
player.h \
range.h \
reputation.h \
signals.h \
slot.h \
slots.h \
stats.h \
uid.h \
zone.h
libcore_la_SOURCES = \
application.cc \
commandbuffer.cc \
core.cc \
cvar.cc \
descriptions.cc \
entity.cc \
entityglobe.cc \
entityprojectile.cc \
extension.cc \
func.cc \
gameconnection.cc \
gameinterface.cc \
gameserver.cc \
info.cc \
inventory.cc \
item.cc \
label.cc \
loader.cc \
module.cc \
netclient.cc \
netconnection.cc \
netserver.cc \
parser.cc \
physics.cc \
player.cc \
reputation.cc \
signals.cc \
slot.cc \
slots.cc \
stats.cc \
uid.cc \
zone.cc
libcore_la_DEPENDENCIES = \
$(top_builddir)/src/auxiliary/libauxiliary.la \
$(top_builddir)/src/math/libmath.la \
$(top_builddir)/src/sys/libsys.la \
$(top_builddir)/src/filesystem/libfilesystem.la \
$(top_builddir)/src/model/libmodel.la
libcore_la_LIBADD =
libcore_la_LDFLAGS = -avoid-version -no-undefined
|