summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-03-19 10:28:00 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-03-19 10:28:00 +0000
commit70ef12d2634216910c32299adca2c6ea243624b0 (patch)
treeb11871c5740c23a1a5af2dc4d243d0c2a009fadf /src
parent49443185e13d937eec0b106aa5d381087a5188c2 (diff)
downloadmanaserv-70ef12d2634216910c32299adca2c6ea243624b0.tar.gz
manaserv-70ef12d2634216910c32299adca2c6ea243624b0.tar.bz2
manaserv-70ef12d2634216910c32299adca2c6ea243624b0.tar.xz
manaserv-70ef12d2634216910c32299adca2c6ea243624b0.zip
Start on files that enable compiling this, but don't expect it to compile for
now.
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