blob: fccf2d69cfe44da9755e93db81c062045be17c26 (
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
88
89
90
91
92
93
94
95
96
97
98
|
METASOURCES = AUTO
INCLUDES = -I$(top_srcdir)/src
if BUILD_DEDICATED
noinst_LTLIBRARIES =
else
noinst_LTLIBRARIES = libclient.la
endif
noinst_HEADERS = \
action.h \
buttonmenu.h \
buymenu.h \
chat.h \
client.h \
clientext.h \
dialog.h \
entitymenu.h \
galaxymapwidget.h \
gamewindow.h \
hud.h \
hudenginestatus.h \
hudplayerstatus.h \
hudtargetstatus.h \
infowidget.h \
input.h \
inventorywindow.h \
inventorylistview.h \
joystick.h \
key.h \
keyboard.h \
mainmenu.h \
mainwindow.h \
mapwidget.h \
mapwindow.h \
notifications.h \
reputationwindow.h \
savegamemenu.h \
soundext.h \
targeticonbutton.h \
targets.h \
testmodelwindow.h \
trademenu.h \
video.h
libclient_la_SOURCES = \
action.cc \
buttonmenu.cc \
buymenu.cc \
chat.cc \
client.cc \
clientext.cc \
dialog.cc \
entitymenu.cc \
galaxymapwidget.cc \
gamewindow.cc \
hud.cc \
hudenginestatus.cc \
hudplayerstatus.cc \
hudtargetstatus.cc \
infowidget.cc \
input.cc \
inventorylistview.cc \
inventorywindow.cc \
joystick.cc \
key.cc \
keyboard.cc \
mainmenu.cc \
mainwindow.cc \
mapwidget.cc \
mapwindow.cc \
notifications.cc \
reputationwindow.cc \
savegamemenu.cc \
soundext.cc \
targeticonbutton.cc \
targets.cc \
testmodelwindow.cc \
trademenu.cc \
video.cc
libclient_la_CFLAGS = $(LIBSDL_CFLAGS) $(GL_CFLAGS)
libclient_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 \
$(top_builddir)/src/core/libcore.la \
$(top_builddir)/src/audio/libaudio.la \
$(top_builddir)/src/render/librender.la \
$(top_builddir)/src/ui/libui.la
libclient_la_LIBADD =
libclient_la_LDFLAGS = -avoid-version -no-undefined
|