blob: 13b290ced0f212cc26e73f1f565d7784aa230f37 (
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
|
bin_PROGRAMS = tmw
tmw_SOURCES = sound/sound.cpp \
graphic/2xsai.cpp \
graphic/graphic.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/progressbar.cpp \
gui/setup.cpp \
gui/shop.cpp \
gui/skill.cpp \
gui/stats.cpp \
gui/window.cpp \
net/network.cpp \
net/protocol.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
|