blob: 94ff110e7abec9f4ca470f0de21e813df922e58f (
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
|
bin_PROGRAMS = tmwserv
tmwserv_SOURCES = main.cpp \
connectionhandler.h \
connectionhandler.cpp \
messagehandler.h \
messagehandler.cpp \
messagein.h \
messagein.cpp \
messageout.h \
messageout.cpp \
netcomputer.h \
netcomputer.cpp \
netsession.h \
netsession.cpp \
packet.h \
packet.cpp
# set the include path found by configure
INCLUDES= $(all_includes)
# the library search path.
tmwserv_LDFLAGS = $(all_libraries) $(LIBSDL_RPATH) `pkg-config --libs libxml-2.0`
tmwserv_CXXFLAGS = -g -Wall $(LIBSDL_CFLAGS) `pkg-config --cflags libxml-2.0` -fno-inline
tmwserv_LDADD = $(LIBSDL_LIBS) -lphysfs
tmwserv_TARGET = ../tmwserv
|