Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: c1f463287fbea86ad990d37ad2cca6f3967fb32e (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
METASOURCES = AUTO
INCLUDES = -I$(top_srcdir)/src

noinst_LTLIBRARIES = libcore.la

noinst_HEADERS = \
	application.h \
	commandbuffer.h \
	core.h \
	cvar.h \
	descriptions.h \
	entity.h \
	extension.h \
	func.h \
	gameconnection.h \
	gameinterface.h \
	gameserver.h \
	info.h \
	inventory.h \
	item.h \
	label.h \
	loader.h \
	message.h \
	module.h \
	netclient.h \
	netconnection.h \
	net.h \
	netplayer.h \
	netserver.h \
	parser.h \
	physics.h \
	player.h \
	range.h \
	signals.h \
	stats.h \
	zone.h

libcore_la_SOURCES = \
	application.cc \
	commandbuffer.cc \
	core.cc \
	cvar.cc \
	descriptions.cc \
	entity.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 \
	netplayer.cc \
	netserver.cc \
	parser.cc \
	physics.cc \
	player.cc \
	signals.cc \
	stats.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