summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHuynh Tran <nthuynh75@gmail.com>2005-06-23 19:49:21 +0000
committerHuynh Tran <nthuynh75@gmail.com>2005-06-23 19:49:21 +0000
commit8a31e5c654af9a4b3261db3e290f08ce5629b071 (patch)
tree25f1d7d2eff2162b5347e447316898ce06525f4b /src
parent3e4a09a671b5af4c1392eb6e6c5c6e1f4aa74259 (diff)
downloadmanaserv-8a31e5c654af9a4b3261db3e290f08ce5629b071.tar.gz
manaserv-8a31e5c654af9a4b3261db3e290f08ce5629b071.tar.bz2
manaserv-8a31e5c654af9a4b3261db3e290f08ce5629b071.tar.xz
manaserv-8a31e5c654af9a4b3261db3e290f08ce5629b071.zip
Wrote the M4 function and re-added header files to Makefile.am for make dist.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am36
1 files changed, 32 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 3c39871d..d567125b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -4,41 +4,69 @@
bin_PROGRAMS = tmwserv
tmwserv_SOURCES = main.cpp \
+ accounthandler.h \
accounthandler.cpp \
+ connectionhandler.h \
connectionhandler.cpp \
+ debug.h \
debug.cpp \
defines.h \
+ items.h \
+ messagehandler.h \
messagehandler.cpp \
+ messagein.h \
messagein.cpp \
+ messageout.h \
messageout.cpp \
+ netcomputer.h \
netcomputer.cpp \
+ netsession.h \
netsession.cpp \
+ packet.h \
packet.cpp \
+ skill.h \
skill.cpp \
+ storage.h \
storage.cpp \
+ account.h \
account.cpp \
+ object.h \
object.cpp \
+ dalstorage.h \
dalstorage.cpp \
+ dal/dalexcept.h \
+ dal/dataprovider.h \
dal/dataprovider.cpp \
+ dal/dataproviderfactory.h \
dal/dataproviderfactory.cpp \
+ dal/recordset.h \
dal/recordset.cpp \
+ utils/functors.h \
+ utils/singleton.h \
+ utils/cipher.h \
utils/cipher.cpp \
+ utils/logger.h \
utils/logger.cpp
if BUILD_MYSQL
-tmwserv_SOURCES += dal/mysqldataprovider.cpp
+tmwserv_SOURCES += dal/mysqldataprovider.h \
+ dal/mysqldataprovider.cpp
endif
if BUILD_POSTGRESQL
-tmwserv_SOURCES += dal/pqdataprovider.cpp
+tmwserv_SOURCES += dal/pqdataprovider.h \
+ dal/pqdataprovider.cpp
endif
if BUILD_SQLITE
-tmwserv_SOURCES += dal/sqlitedataprovider.cpp
+tmwserv_SOURCES += dal/sqlitedataprovider.h \
+ dal/sqlitedataprovider.cpp
endif
if BUILD_SQUIRREL
-tmwserv_SOURCES += script.cpp \
+tmwserv_SOURCES += script.h \
+ script.cpp \
+ script-squirrel.h \
script-squirrel.cpp
endif