blob: c5c4bb9d1962a2b9ecea9f0edeb3b1ac68062191 (
plain) (
blame)
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
|
bin_PROGRAMS = tmw
tmw_SOURCES = sound/sound.cpp \
graphic/2xsai.cpp \
graphic/graphic.cpp \
graphic/image.cpp \
gui/button.cpp \
gui/char_server.cpp \
gui/char_select.cpp \
gui/chat.cpp \
gui/checkbox.cpp \
gui/gui.cpp \
gui/inventory.cpp \
gui/login.cpp \
gui/npc.cpp \
gui/passwordfield.cpp \
gui/progressbar.cpp \
gui/setup.cpp \
gui/shop.cpp \
gui/skill.cpp \
gui/stats.cpp \
gui/textfield.cpp \
gui/window.cpp \
net/network.cpp \
net/protocol.cpp \
configuration.cpp \
being.cpp \
game.cpp \
main.cpp \
map.cpp \
log.cpp \
astar.cpp
# set the include path found by configure
INCLUDES= $(all_includes)
# the library search path.
tmw_LDFLAGS = $(all_libraries) $(LIBSDL_RPATH) $(LIBALLEGRO_RPATH)
tmw_CXXFLAGS = $(LIBSDL_CFLAGS) $(LIBALLEGRO_CFLAGS)
tmw_LDADD = $(LIBSDL_LIBS) $(LIBALLEGRO_LIBS)
tmw_TARGET = ../tmw
|