summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 00000000..94ff110e
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,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