aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraczman <none@none>2009-03-29 23:14:53 +0200
committerraczman <none@none>2009-03-29 23:14:53 +0200
commitd8bd91cf34defc75a9762607f6f25617a3482007 (patch)
treea50c233133a5ceadadfa0cde1ee4ecec1c45f900
parent3a13ab502fb879a73ad5ae4618dc5a6cb5b8b9c4 (diff)
Removed automake from TC for good. ACE automake is still there, for folks who want to build ACE from dep/ACE_wrappers.
--HG-- branch : trunk
-rw-r--r--Makefile.am31
-rw-r--r--contrib/Makefile.am25
-rw-r--r--contrib/extractor/Makefile.am10
-rw-r--r--contrib/extractor/libmpq/Makefile.am23
-rw-r--r--dep/Makefile.am29
-rw-r--r--dep/include/Makefile.am263
-rw-r--r--dep/lib/Makefile.am54
-rw-r--r--dep/src/Makefile.am25
-rw-r--r--dep/src/g3dlite/Makefile.am41
-rw-r--r--dep/src/sockets/Makefile.am49
-rw-r--r--dep/src/zlib/Makefile.am56
-rw-r--r--dep/src/zthread/Makefile.am132
-rw-r--r--doc/Makefile.am51
-rw-r--r--sql/Makefile.am48
-rw-r--r--sql/tools/Makefile.am38
-rw-r--r--src/Makefile.am25
-rw-r--r--src/bindings/Makefile.am25
-rw-r--r--src/bindings/interface/Makefile.am55
-rw-r--r--src/bindings/scripts/Makefile.am440
-rw-r--r--src/framework/Makefile.am65
-rw-r--r--src/game/Makefile.am306
-rw-r--r--src/shared/Auth/Makefile.am41
-rw-r--r--src/shared/Config/Makefile.am42
-rw-r--r--src/shared/Database/Makefile.am64
-rw-r--r--src/shared/Makefile.am138
-rw-r--r--src/shared/vmap/Makefile.am58
-rw-r--r--src/tools/Makefile.am2
-rw-r--r--src/tools/genrevision/Makefile.am17
-rw-r--r--src/trinitycore/Makefile.am85
-rw-r--r--src/trinityrealm/Makefile.am72
30 files changed, 0 insertions, 2310 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 2650fd4659e..00000000000
--- a/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-SUBDIRS = dep doc src
-
-## Additional files to include when running 'make dist'
-EXTRA_DIST = win
-
-
-
-
-
-
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
deleted file mode 100644
index 47ba379c089..00000000000
--- a/contrib/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-SUBDIRS = extractor
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
diff --git a/contrib/extractor/Makefile.am b/contrib/extractor/Makefile.am
deleted file mode 100644
index b84617069a1..00000000000
--- a/contrib/extractor/Makefile.am
+++ /dev/null
@@ -1,10 +0,0 @@
-# The top-level input Makefile for mpq-tools
-
-# Any directories which should be built and installed.
-SUBDIRS = libmpq
-
-# The directories which are part of the distribution.
-DIST_SUBDIRS = $(SUBDIRS)
-
-EXTRA_DIST = \
- README.linux
diff --git a/contrib/extractor/libmpq/Makefile.am b/contrib/extractor/libmpq/Makefile.am
deleted file mode 100644
index 192bd1369ef..00000000000
--- a/contrib/extractor/libmpq/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-# The input Makefile for the main mpq-tools
-
-lib_LTLIBRARIES = libmpq.la
-noinst_HEADERS = explode.h huffman.h wave.h common.h
-
-# The directory where the include files will be installed.
-libmpq_includedir = $(includedir)/libmpq
-
-# Which header files to install.
-libmpq_include_HEADERS = mpq.h
-
-libmpq_la_SOURCES = $(GENERAL_SRCS)
-libmpq_la_LDFLAGS = -release $(LIBMPQ_VERSION)
-libmpq_la_LIBADD = @Z_LIBS@
-
-GENERAL_SRCS = \
- common.c \
- huffman.c \
- extract.c \
- explode.c \
- mpq.c \
- parser.c \
- wave.c
diff --git a/dep/Makefile.am b/dep/Makefile.am
deleted file mode 100644
index f5829acd58f..00000000000
--- a/dep/Makefile.am
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-SUBDIRS = include lib src
-
-if TRI_BUILD_ACE
-SUBDIRS += ACE_wrappers
-endif
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
diff --git a/dep/include/Makefile.am b/dep/include/Makefile.am
deleted file mode 100644
index f9cda557ecb..00000000000
--- a/dep/include/Makefile.am
+++ /dev/null
@@ -1,263 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## Additional files to include when running 'make dist'
-# G3DLite header files
-EXTRA_DIST = \
- g3dlite/G3D/AABox.h \
- g3dlite/G3D/Array.h \
- g3dlite/G3D/Box.h \
- g3dlite/G3D/CollisionDetection.h \
- g3dlite/G3D/CoordinateFrame.h \
- g3dlite/G3D/Crypto.h \
- g3dlite/G3D/debug.h \
- g3dlite/G3D/format.h \
- g3dlite/G3D/g3dmath.h \
- g3dlite/G3D/g3dmath.inl \
- g3dlite/G3D/GCamera.h \
- g3dlite/G3D/Line.h \
- g3dlite/G3D/Matrix3.h \
- g3dlite/G3D/Plane.h \
- g3dlite/G3D/platform.h \
- g3dlite/G3D/Quat.h \
- g3dlite/G3D/Quat.inl \
- g3dlite/G3D/Ray.h \
- g3dlite/G3D/RegistryUtil.h \
- g3dlite/G3D/Sphere.h \
- g3dlite/G3D/stringutils.h \
- g3dlite/G3D/System.h \
- g3dlite/G3D/Table.h \
- g3dlite/G3D/Triangle.h \
- g3dlite/G3D/Vector2.h \
- g3dlite/G3D/Vector2.inl \
- g3dlite/G3D/Vector2int16.h \
- g3dlite/G3D/Vector3.h \
- g3dlite/G3D/Vector3.inl \
- g3dlite/G3D/Vector3int16.h \
- g3dlite/G3D/Vector4.h \
- g3dlite/G3D/Vector4.inl
-
-# MySQL header files for Win32 builds
-EXTRA_DIST += \
- mysql/config-netware.h \
- mysql/config-os2.h \
- mysql/config-win.h \
- mysql/errmsg.h \
- mysql/Libmysql.def \
- mysql/m_ctype.h \
- mysql/m_string.h \
- mysql/my_alloc.h \
- mysql/my_dbug.h \
- mysql/my_getopt.h \
- mysql/my_global.h \
- mysql/my_list.h \
- mysql/my_pthread.h \
- mysql/mysql_com.h \
- mysql/mysqld_error.h \
- mysql/mysql_embed.h \
- mysql/mysql.h \
- mysql/mysql_time.h \
- mysql/mysql_version.h \
- mysql/my_sys.h \
- mysql/raid.h \
- mysql/typelib.h
-
-# OpenSSL header files for Win32 builds
-EXTRA_DIST += \
- openssl/aes.h \
- openssl/asn1.h \
- openssl/asn1_mac.h \
- openssl/asn1t.h \
- openssl/bio.h \
- openssl/blowfish.h \
- openssl/bn.h \
- openssl/buffer.h \
- openssl/cast.h \
- openssl/comp.h \
- openssl/conf_api.h \
- openssl/conf.h \
- openssl/crypto.h \
- openssl/des.h \
- openssl/des_old.h \
- openssl/dh.h \
- openssl/dsa.h \
- openssl/dso.h \
- openssl/dtls1.h \
- openssl/ebcdic.h \
- openssl/ecdh.h \
- openssl/ecdsa.h \
- openssl/ec.h \
- openssl/engine.h \
- openssl/e_os2.h \
- openssl/err.h \
- openssl/evp.h \
- openssl/hmac.h \
- openssl/idea.h \
- openssl/krb5_asn.h \
- openssl/kssl.h \
- openssl/lhash.h \
- openssl/md2.h \
- openssl/md4.h \
- openssl/md5.h \
- openssl/mdc2.h \
- openssl/objects.h \
- openssl/obj_mac.h \
- openssl/ocsp.h \
- openssl/opensslconf.h \
- openssl/opensslv.h \
- openssl/ossl_typ.h \
- openssl/pem2.h \
- openssl/pem.h \
- openssl/pkcs12.h \
- openssl/pkcs7.h \
- openssl/pq_compat.h \
- openssl/pqueue.h \
- openssl/rand.h \
- openssl/rc2.h \
- openssl/rc4.h \
- openssl/rc5.h \
- openssl/ripemd.h \
- openssl/rsa.h \
- openssl/safestack.h \
- openssl/sha.h \
- openssl/ssl23.h \
- openssl/ssl2.h \
- openssl/ssl3.h \
- openssl/ssl.h \
- openssl/stack.h \
- openssl/store.h \
- openssl/symhacks.h \
- openssl/tls1.h \
- openssl/tmdiff.h \
- openssl/txt_db.h \
- openssl/ui_compat.h \
- openssl/ui.h \
- openssl/x509.h \
- openssl/x509v3.h \
- openssl/x509_vfy.h
-
-# PostgreSQL header files for Win32 builds
-EXTRA_DIST += \
- postgre/libpq-fe.h \
- postgre/pg_type.h \
- postgre/postgres_ext.h
-
-# SQLite header files for Win32 builds
-EXTRA_DIST += \
- sqlite/sqlite.h
-
-# Sockets header files for Win32 builds
-EXTRA_DIST += \
- sockets/Base64.h \
- sockets/Exception.h \
- sockets/File.h \
- sockets/IFile.h \
- sockets/Ipv4Address.h \
- sockets/Ipv6Address.h \
- sockets/ISocketHandler.h \
- sockets/ListenSocket.h \
- sockets/Lock.h \
- sockets/Mutex.h \
- sockets/Parse.h \
- sockets/ResolvServer.h \
- sockets/ResolvSocket.h \
- sockets/SctpSocket.h \
- sockets/SocketAddress.h \
- sockets/Socket.h \
- sockets/SocketHandler.h \
- sockets/socket_include.h \
- sockets/sockets-config.h \
- sockets/StdLog.h \
- sockets/StdoutLog.h \
- sockets/StreamSocket.h \
- sockets/TcpSocket.h \
- sockets/Thread.h \
- sockets/UdpSocket.h \
- sockets/Utility.h
-
-# VLD header files for Win32 builds
-EXTRA_DIST += \
- vld/vld.h
-
-# Zlib header files for Win32 builds
-EXTRA_DIST += \
- zlib/zconf.h \
- zlib/zlib.h
-
-# ZThread header files for Win32 builds
-EXTRA_DIST += \
- zthread/AtomicCount.h \
- zthread/Barrier.h \
- zthread/BiasedReadWriteLock.h \
- zthread/BlockingQueue.h \
- zthread/BoundedQueue.h \
- zthread/Cancelable.h \
- zthread/ClassLockable.h \
- zthread/ConcurrentExecutor.h \
- zthread/Condition.h \
- zthread/Config.h \
- zthread/CountedPtr.h \
- zthread/CountingSemaphore.h \
- zthread/Exceptions.h \
- zthread/Executor.h \
- zthread/FairReadWriteLock.h \
- zthread/FastMutex.h \
- zthread/FastRecursiveMutex.h \
- zthread/Guard.h \
- zthread/GuardedClass.h \
- zthread/Lockable.h \
- zthread/LockedQueue.h \
- zthread/MonitoredQueue.h \
- zthread/Mutex.h \
- zthread/NonCopyable.h \
- zthread/PoolExecutor.h \
- zthread/Priority.h \
- zthread/PriorityCondition.h \
- zthread/PriorityInheritanceMutex.h \
- zthread/PriorityMutex.h \
- zthread/PrioritySemaphore.h \
- zthread/Queue.h \
- zthread/ReadWriteLock.h \
- zthread/RecursiveMutex.h \
- zthread/Runnable.h \
- zthread/Semaphore.h \
- zthread/Singleton.h \
- zthread/SynchronousExecutor.h \
- zthread/Task.h \
- zthread/Thread.h \
- zthread/ThreadLocal.h \
- zthread/ThreadLocalImpl.h \
- zthread/ThreadedExecutor.h \
- zthread/Time.h \
- zthread/Waitable.h \
- zthread/ZThread.h
-
-# Mersenne Twister random number generator header files
-EXTRA_DIST += \
- mersennetwister/MersenneTwister.h
-
-# UTF8-CPP header files
-EXTRA_DIST += \
- utf8cpp/utf8.h \
- utf8cpp/utf8/checked.h \
- utf8cpp/utf8/core.h \
- utf8cpp/utf8/unchecked.h
diff --git a/dep/lib/Makefile.am b/dep/lib/Makefile.am
deleted file mode 100644
index f66fd207239..00000000000
--- a/dep/lib/Makefile.am
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## Additional files to include when running 'make dist'
-# Debug libraries for Win32 builds.
-EXTRA_DIST = \
- win32_debug/libeay32.dll \
- win32_debug/libeay32.lib \
- win32_debug/libmySQL.dll \
- win32_debug/libmySQL.lib \
- win32_debug/sqlite.lib
-
-# Release libraries for Win32 builds.
-EXTRA_DIST += \
- win32_release/libeay32.dll \
- win32_release/libeay32.lib \
- win32_release/libmySQL.dll \
- win32_release/libmySQL.lib \
- win32_release/sqlite.lib
-
-# Debug libraries for Win64 builds.
-EXTRA_DIST += \
- x64_Debug/libeay32.dll \
- x64_Debug/libeay32.lib \
- x64_Debug/libmySQL.dll \
- x64_Debug/libmysql.lib
-
-# Release libraries for Win64 builds.
-EXTRA_DIST += \
- x64_release/libeay32.dll \
- x64_release/libeay32.lib \
- x64_release/libmySQL.dll \
- x64_release/libmysql.lib
-
-
diff --git a/dep/src/Makefile.am b/dep/src/Makefile.am
deleted file mode 100644
index 88fa363a599..00000000000
--- a/dep/src/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-SUBDIRS = g3dlite sockets zlib zthread
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
diff --git a/dep/src/g3dlite/Makefile.am b/dep/src/g3dlite/Makefile.am
deleted file mode 100644
index 0130a29f571..00000000000
--- a/dep/src/g3dlite/Makefile.am
+++ /dev/null
@@ -1,41 +0,0 @@
-## Modified for Trinity <http://www.trinitycore.org/>
-##
-## Permission is hereby granted, free of charge, to any person obtaining a copy
-## of this software and associated documentation files (the "Software"), to deal
-## in the Software without restriction, including without limitation the rights
-## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-## copies of the Software, and to permit persons to whom the Software is furnished
-## to do so, subject to the following conditions:
-##
-## The above copyright notice and this permission notice shall be included in all
-## copies or substantial portions of the Software.
-##
-## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-## WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-## CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-## Process this file with automake to produce Makefile.in
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/../../include -I$(srcdir)/../../include/g3dlite
-
-noinst_LIBRARIES = libg3dlite.a
-libg3dlite_a_SOURCES = \
- AABox.cpp \
- Box.cpp \
- Crypto.cpp \
- format.cpp \
- Matrix3.cpp \
- Plane.cpp \
- System.cpp \
- Triangle.cpp \
- Vector3.cpp \
- Vector4.cpp
-
-EXTRA_DIST = \
- license.html
-
-
diff --git a/dep/src/sockets/Makefile.am b/dep/src/sockets/Makefile.am
deleted file mode 100644
index 2a7f1123f58..00000000000
--- a/dep/src/sockets/Makefile.am
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/../../include/sockets
-
-## Build MaNGOS shared library and its parts as convenience library.
-# All libraries will be convenience libraries. Might be changed to shared
-# later.
-noinst_LIBRARIES = libmangossockets.a
-
-libmangossockets_a_SOURCES = \
- Base64.cpp \
- Exception.cpp \
- Ipv4Address.cpp \
- Ipv6Address.cpp \
- Lock.cpp \
- Mutex.cpp \
- Parse.cpp \
- ResolvServer.cpp \
- ResolvSocket.cpp \
- Socket.cpp \
- SocketHandler.cpp \
- StdoutLog.cpp \
- StreamSocket.cpp \
- TcpSocket.cpp \
- Thread.cpp \
- UdpSocket.cpp \
- Utility.cpp \
- socket_include.cpp
diff --git a/dep/src/zlib/Makefile.am b/dep/src/zlib/Makefile.am
deleted file mode 100644
index 9be7fb3b97e..00000000000
--- a/dep/src/zlib/Makefile.am
+++ /dev/null
@@ -1,56 +0,0 @@
-## Modified for Trinity <http://www.trinitycore.org/>
-##
-## Permission is hereby granted, free of charge, to any person obtaining a copy
-## of this software and associated documentation files (the "Software"), to deal
-## in the Software without restriction, including without limitation the rights
-## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-## copies of the Software, and to permit persons to whom the Software is furnished
-## to do so, subject to the following conditions:
-##
-## The above copyright notice and this permission notice shall be included in all
-## copies or substantial portions of the Software.
-##
-## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-## WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-## CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-## Process this file with automake to produce Makefile.in
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/../../include -I$(srcdir)/../../include/zlib
-
-## Build zlib as convenience library.
-# libzlib conveniece library will later be reused by ...
-noinst_LIBRARIES = libzlib.a
-libzlib_a_SOURCES = \
- adler32.c \
- compress.c \
- crc32.c \
- deflate.c \
- example.c \
- gzio.c \
- infback.c \
- inffast.c \
- inflate.c \
- inftrees.c \
- trees.c \
- uncompr.c \
- zutil.c
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
-EXTRA_DIST = \
- crc32.h \
- deflate.h \
- inffast.h \
- inffixed.h \
- inflate.h \
- inftrees.h \
- trees.h \
- zconf.h \
- zlib.h \
- zutil.h
-
diff --git a/dep/src/zthread/Makefile.am b/dep/src/zthread/Makefile.am
deleted file mode 100644
index df92221c926..00000000000
--- a/dep/src/zthread/Makefile.am
+++ /dev/null
@@ -1,132 +0,0 @@
-## Copyright (c) 2005, Eric Crahen
-## Modified for Trinity <http://www.trinitycore.org/>
-##
-## Permission is hereby granted, free of charge, to any person obtaining a copy
-## of this software and associated documentation files (the "Software"), to deal
-## in the Software without restriction, including without limitation the rights
-## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-## copies of the Software, and to permit persons to whom the Software is furnished
-## to do so, subject to the following conditions:
-##
-## The above copyright notice and this permission notice shall be included in all
-## copies or substantial portions of the Software.
-##
-## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-## WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-## CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-## Process this file with automake to produce Makefile.in
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = -I$(srcdir)/../../include -I$(srcdir)/../../include/zthread
-
-## Build ZThread as shared library.
-# libZThread shared library will later be reused by realm list daemon
-# and world server daemon.
-lib_LTLIBRARIES = libZThread.la
-libZThread_la_SOURCES = \
- AtomicCount.cxx \
- Condition.cxx \
- ConcurrentExecutor.cxx \
- CountingSemaphore.cxx \
- FastMutex.cxx \
- FastRecursiveMutex.cxx \
- Mutex.cxx \
- RecursiveMutexImpl.cxx \
- RecursiveMutex.cxx \
- Monitor.cxx \
- PoolExecutor.cxx \
- PriorityCondition.cxx \
- PriorityInheritanceMutex.cxx \
- PriorityMutex.cxx \
- PrioritySemaphore.cxx \
- Semaphore.cxx \
- SynchronousExecutor.cxx \
- Thread.cxx \
- ThreadedExecutor.cxx \
- ThreadImpl.cxx \
- ThreadLocalImpl.cxx \
- ThreadQueue.cxx \
- Time.cxx \
- ThreadOps.cxx
-
-## libtool settings
-# API versioning
-# Link against dependencies
-# How to increase version info:
-# - only bug fixes implemented:
-# bump the version to LTZTHREAD_CURRENT:LTZTHREAD_REVISION+1:LTZTHREAD_AGE
-# - augmented the interface:
-# bump the version to LTZTHREAD_CURRENT+1:0:LTZTHREAD_AGE+1
-# - broken old interface:
-# bump the version to LTZTHREAD_CURRENT+1:0:0
-LTZTHREAD_CURRENT = 2
-LTZTHREAD_REVISION = 3
-LTZTHREAD_AGE = 2
-libZThread_la_LDFLAGS = -version-info $(LTZTHREAD_CURRENT):$(LTZTHREAD_REVISION):$(LTZTHREAD_AGE)
-
-## Additional files to include when running 'make dist'
-# Header files.
-EXTRA_DIST = \
- ConditionImpl.h \
- Debug.h \
- DeferredInterruptionScope.h \
- FastLock.h \
- FastRecursiveLock.h \
- IntrusivePtr.h \
- Monitor.h \
- MutexImpl.h \
- RecursiveMutexImpl.h \
- Scheduling.h \
- SemaphoreImpl.h \
- State.h \
- Status.h \
- TSS.h \
- ThreadImpl.h \
- ThreadOps.h \
- ThreadQueue.h \
- TimeStrategy.h \
- config.h
-
-# Implementation specific files.
-EXTRA_DIST += \
- linux/AtomicCount.cxx \
- linux/AtomicFastLock.h \
- linux/FastRecursiveLock.h \
- macos/FastLock.h \
- macos/Monitor.cxx \
- macos/Monitor.h \
- macos/TSS.h \
- macos/ThreadOps.cxx \
- macos/ThreadOps.h \
- macos/UpTimeStrategy.h \
- posix/ConditionRecursiveLock.h \
- posix/FastLock.h \
- posix/FtimeStrategy.h \
- posix/GetTimeOfDayStrategy.h \
- posix/Monitor.cxx \
- posix/Monitor.h \
- posix/PriorityOps.h \
- posix/TSS.h \
- posix/ThreadOps.cxx \
- posix/ThreadOps.h \
- solaris/FastRecursiveLock.h \
- vanilla/DualMutexRecursiveLock.h \
- vanilla/SimpleAtomicCount.cxx \
- vanilla/SimpleRecursiveLock.h \
- win32/AtomicCount.cxx \
- win32/AtomicFastLock.h \
- win32/AtomicFastRecursiveLock.h \
- win32/FastLock.h \
- win32/FastRecursiveLock.h \
- win32/Monitor.cxx \
- win32/Monitor.h \
- win32/PerformanceCounterStrategy.h \
- win32/TSS.h \
- win32/ThreadOps.cxx \
- win32/ThreadOps.h \
- win9x/AtomicCount.cxx \
- win9x/AtomicFastLock.h
diff --git a/doc/Makefile.am b/doc/Makefile.am
deleted file mode 100644
index f7bc0a05071..00000000000
--- a/doc/Makefile.am
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
-# Doxygen configuration files.
-EXTRA_DIST = \
- DocStructure.dox \
- Doxyfile
-
-DOC_DIR = .
-DOXYFILE = $(DOC_DIR)/Doxyfile
-DOC_HTML = $(DOC_OUT)/index.html
-DOC_OUT_HTML = $(DOC_DIR)/html
-DOXYGEN = @DOXYGEN@
-
-if DOXYGEN_ENABLED
-doc: $(DOC_HTML)
- @echo ""
- @echo "Type \"firefox $(DOC_OUT_HTML)/index.html\" to see the html document."
- @echo ""
-
-$(DOC_HTML): $(DOXYFILE)
- $(DOXYGEN) $(DOXYFILE)
-else
-.PHONY: doc
-doc:
- @echo "You must enable at configure time: ./configure --enable-doxygen"
-endif
-
-clean-local:
- rm -rf $(DOC_OUT_HTML)
diff --git a/sql/Makefile.am b/sql/Makefile.am
deleted file mode 100644
index 93cc1474b1c..00000000000
--- a/sql/Makefile.am
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-SUBDIRS = updates tools
-
-## Change installation location
-# datadir = trinity/sql
-pkgdatadir = $(datadir)/trinity/sql
-
-## Files to be installed
-# Install basic SQL files to datadir
-pkgdata_DATA = \
- world.sql \
- realmd.sql \
- characters.sql \
- create_mysql.sql \
- world_scripts_full.sql \
- world_scripts_structure.sql \
- drop_mysql.sql
-
-## Additional files to include when running 'make dist'
-# SQL files for MaNGOS database
-EXTRA_DIST = \
- create_mysql.sql \
- drop_mysql.sql \
- characters.sql \
- world.sql \
- world_scripts_full.sql \
- world_scripts_structure.sql \
- realmd.sql
diff --git a/sql/tools/Makefile.am b/sql/tools/Makefile.am
deleted file mode 100644
index 301aafceedb..00000000000
--- a/sql/tools/Makefile.am
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## Change installation location
-# datadir = trinity/sql/tools
-pkgdatadir = $(datadir)/trinity/sql/tools
-
-## Files to be installed
-# Install basic SQL files to datadir
-pkgdata_DATA = \
- characters_item_duplicates_remove.sql \
- characters_pet_data_cleanup.sql \
- README
-
-## Additional files to include when running 'make dist'
-EXTRA_DIST = \
- characters_item_duplicates_remove.sql \
- characters_pet_data_cleanup.sql \
- README
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index 40787fa17d0..00000000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# Thanks to the original authors: MaNGOS <http://www.mangosproject.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-SUBDIRS = framework shared trinityrealm game bindings trinitycore
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
diff --git a/src/bindings/Makefile.am b/src/bindings/Makefile.am
deleted file mode 100644
index 5e85dfe15bc..00000000000
--- a/src/bindings/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# Thanks to the original authors: MaNGOS <http://www.mangosproject.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-# interface folder is disabled for now
-
-if USE_TSCRIPTS
-SUBDIRS = scripts
-else
-SUBDIRS = interface
-endif
diff --git a/src/bindings/interface/Makefile.am b/src/bindings/interface/Makefile.am
deleted file mode 100644
index bcca2128203..00000000000
--- a/src/bindings/interface/Makefile.am
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# Thanks to the original authors: MaNGOS <http://www.mangosproject.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## Build MaNGOS script library as shared library.
-# libmangosscript shared library will later be reused by world server daemon.
-lib_LTLIBRARIES = libtrinityscript.la
-
-libtrinityscript_la_CPPFLAGS = \
-$(MYSQL_INCLUDES) \
-$(POSTGRE_INCLUDES) \
-$(TRINI_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/src/shared \
--I$(top_srcdir)/src/framework \
--I$(top_srcdir)/src/game
-
-libtrinityscript_la_SOURCES = \
-$(srcdir)/ScriptMgr.cpp \
-$(srcdir)/ScriptMgr.h \
-$(srcdir)/config.h \
-$(srcdir)/system.cpp \
-$(srcdir)/Scripts/sc_default.cpp \
-$(srcdir)/Scripts/sc_defines.cpp \
-$(srcdir)/Scripts/sc_defines.h
-
-## libtool settings
-# API versioning
-libtrinityscript_la_LIBFLAGS = -version-info 0:0:0
-libtrinityscript_la_LIBADD = $(MYSQL_LIBS) $(POSTGRE_LIBS)
-
-## Additional files to include when running 'make dist'
-# Scripts defaults.
-EXTRA_DIST = \
- Readme.txt
-
-
diff --git a/src/bindings/scripts/Makefile.am b/src/bindings/scripts/Makefile.am
deleted file mode 100644
index ac5965336a6..00000000000
--- a/src/bindings/scripts/Makefile.am
+++ /dev/null
@@ -1,440 +0,0 @@
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# Thanks to the original authors: MaNGOS <http://www.mangosproject.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-## SUBDIRS = sql
-
-# build shared library
-lib_LTLIBRARIES = libtrinityscript.la
-
-libtrinityscript_la_CPPFLAGS = \
-$(MYSQL_INCLUDES) \
-$(POSTGRE_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/src/shared \
--I$(top_srcdir)/src/framework \
--I$(top_srcdir)/src/game \
--I$(srcdir)/include \
-$(TRINI_INCLUDES) \
--D_TRINITY_SCRIPT_CONFIG='"$(sysconfdir)/trinitycore.conf"'
-
-libtrinityscript_la_SOURCES = \
-ScriptMgr.cpp \
-ScriptMgr.h \
-include/precompiled.cpp \
-include/precompiled.h \
-include/sc_creature.cpp \
-include/sc_creature.h \
-include/sc_gossip.h \
-include/sc_instance.h \
-scripts/areatrigger/areatrigger_scripts.cpp \
-scripts/boss/boss_emeriss.cpp \
-scripts/boss/boss_lethon.cpp \
-scripts/boss/boss_taerar.cpp \
-scripts/boss/boss_ysondre.cpp \
-scripts/creature/mob_event_ai.cpp \
-scripts/creature/mob_event_ai.h \
-scripts/creature/mob_generic_creature.cpp \
-scripts/creature/simple_ai.cpp \
-scripts/creature/simple_ai.h \
-scripts/custom/custom_example.cpp \
-scripts/custom/custom_gossip_codebox.cpp \
-scripts/custom/test.cpp \
-scripts/go/go_scripts.cpp \
-scripts/guard/guard_ai.cpp \
-scripts/guard/guard_ai.h \
-scripts/guard/guards.cpp \
-scripts/item/item_scripts.cpp \
-scripts/item/item_test.cpp \
-scripts/npc/npc_escortAI.cpp \
-scripts/npc/npc_escortAI.h \
-scripts/npc/npc_innkeeper.cpp \
-scripts/npc/npc_professions.cpp \
-scripts/npc/npcs_special.cpp \
-scripts/zone/alterac_mountains/alterac_mountains.cpp \
-scripts/zone/arathi_highlands/arathi_highlands.cpp \
-scripts/zone/ashenvale_forest/ashenvale.cpp\
-scripts/zone/aunchindoun/auchenai_crypts/boss_exarch_maladaar.cpp \
-scripts/zone/aunchindoun/auchenai_crypts/boss_shirrak_the_dead_watcher.cpp \
-scripts/zone/aunchindoun/mana_tombs/boss_nexusprince_shaffar.cpp \
-scripts/zone/aunchindoun/mana_tombs/boss_pandemonius.cpp \
-scripts/zone/aunchindoun/sethekk_halls/boss_darkweaver_syth.cpp \
-scripts/zone/aunchindoun/sethekk_halls/boss_tailonking_ikiss.cpp \
-scripts/zone/aunchindoun/sethekk_halls/def_sethekk_halls.h \
-scripts/zone/aunchindoun/sethekk_halls/instance_sethekk_halls.cpp \
-scripts/zone/aunchindoun/shadow_labyrinth/boss_ambassador_hellmaw.cpp \
-scripts/zone/aunchindoun/shadow_labyrinth/boss_blackheart_the_inciter.cpp \
-scripts/zone/aunchindoun/shadow_labyrinth/boss_grandmaster_vorpil.cpp \
-scripts/zone/aunchindoun/shadow_labyrinth/boss_murmur.cpp \
-scripts/zone/aunchindoun/shadow_labyrinth/def_shadow_labyrinth.h \
-scripts/zone/aunchindoun/shadow_labyrinth/instance_shadow_labyrinth.cpp \
-scripts/zone/azshara/azshara.cpp \
-scripts/zone/azshara/boss_azuregos.cpp \
-scripts/zone/azuremyst_isle/azuremyst_isle.cpp \
-scripts/zone/barrens/the_barrens.cpp \
-scripts/zone/black_temple/black_temple.cpp \
-scripts/zone/black_temple/boss_bloodboil.cpp \
-scripts/zone/black_temple/boss_illidan.cpp \
-scripts/zone/black_temple/boss_mother_shahraz.cpp \
-scripts/zone/black_temple/boss_reliquary_of_souls.cpp \
-scripts/zone/black_temple/boss_shade_of_akama.cpp \
-scripts/zone/black_temple/boss_supremus.cpp \
-scripts/zone/black_temple/boss_teron_gorefiend.cpp \
-scripts/zone/black_temple/boss_warlord_najentus.cpp \
-scripts/zone/black_temple/def_black_temple.h \
-scripts/zone/black_temple/illidari_council.cpp \
-scripts/zone/black_temple/instance_black_temple.cpp \
-scripts/zone/blackrock_depths/blackrock_depths.cpp \
-scripts/zone/blackrock_depths/boss_ambassador_flamelash.cpp \
-scripts/zone/blackrock_depths/boss_anubshiah.cpp \
-scripts/zone/blackrock_depths/boss_emperor_dagran_thaurissan.cpp \
-scripts/zone/blackrock_depths/boss_general_angerforge.cpp \
-scripts/zone/blackrock_depths/boss_gorosh_the_dervish.cpp \
-scripts/zone/blackrock_depths/boss_grizzle.cpp \
-scripts/zone/blackrock_depths/boss_high_interrogator_gerstahn.cpp \
-scripts/zone/blackrock_depths/boss_magmus.cpp \
-scripts/zone/blackrock_depths/boss_moira_bronzebeard.cpp \
-scripts/zone/blackrock_depths/boss_tomb_of_seven.cpp \
-scripts/zone/blackrock_depths/def_blackrock_depths.h \
-scripts/zone/blackrock_depths/instance_blackrock_depths.cpp \
-scripts/zone/blackrock_spire/boss_drakkisath.cpp \
-scripts/zone/blackrock_spire/boss_gyth.cpp \
-scripts/zone/blackrock_spire/boss_halycon.cpp \
-scripts/zone/blackrock_spire/boss_highlord_omokk.cpp \
-scripts/zone/blackrock_spire/boss_mother_smolderweb.cpp \
-scripts/zone/blackrock_spire/boss_overlord_wyrmthalak.cpp \
-scripts/zone/blackrock_spire/boss_pyroguard_emberseer.cpp \
-scripts/zone/blackrock_spire/boss_quartermaster_zigris.cpp \
-scripts/zone/blackrock_spire/boss_rend_blackhand.cpp \
-scripts/zone/blackrock_spire/boss_shadow_hunter_voshgajin.cpp \
-scripts/zone/blackrock_spire/boss_the_beast.cpp \
-scripts/zone/blackrock_spire/boss_warmaster_voone.cpp \
-scripts/zone/blackwing_lair/boss_broodlord_lashlayer.cpp \
-scripts/zone/blackwing_lair/boss_chromaggus.cpp \
-scripts/zone/blackwing_lair/boss_ebonroc.cpp \
-scripts/zone/blackwing_lair/boss_firemaw.cpp \
-scripts/zone/blackwing_lair/boss_flamegor.cpp \
-scripts/zone/blackwing_lair/boss_nefarian.cpp \
-scripts/zone/blackwing_lair/boss_razorgore.cpp \
-scripts/zone/blackwing_lair/boss_vaelastrasz.cpp \
-scripts/zone/blackwing_lair/boss_victor_nefarius.cpp \
-scripts/zone/blackwing_lair/instance_blackwing_lair.cpp \
-scripts/zone/blades_edge_mountains/blades_edge_mountains.cpp \
-scripts/zone/blasted_lands/blasted_lands.cpp \
-scripts/zone/blasted_lands/boss_kruul.cpp \
-scripts/zone/bloodmyst_isle/bloodmyst_isle.cpp \
-scripts/zone/burning_steppes/burning_steppes.cpp \
-scripts/zone/caverns_of_time/dark_portal/boss_aeonus.cpp \
-scripts/zone/caverns_of_time/dark_portal/boss_chrono_lord_deja.cpp \
-scripts/zone/caverns_of_time/dark_portal/boss_temporus.cpp \
-scripts/zone/caverns_of_time/dark_portal/dark_portal.cpp \
-scripts/zone/caverns_of_time/dark_portal/def_dark_portal.h \
-scripts/zone/caverns_of_time/dark_portal/instance_dark_portal.cpp \
-scripts/zone/caverns_of_time/hyjal/boss_archimonde.cpp \
-scripts/zone/caverns_of_time/hyjal/def_hyjal.h \
-scripts/zone/caverns_of_time/hyjal/hyjal.cpp \
-scripts/zone/caverns_of_time/hyjal/hyjalAI.cpp \
-scripts/zone/caverns_of_time/hyjal/hyjalAI.h \
-scripts/zone/caverns_of_time/hyjal/instance_hyjal.cpp \
-scripts/zone/caverns_of_time/old_hillsbrad/boss_captain_skarloc.cpp \
-scripts/zone/caverns_of_time/old_hillsbrad/boss_epoch_hunter.cpp \
-scripts/zone/caverns_of_time/old_hillsbrad/boss_leutenant_drake.cpp \
-scripts/zone/caverns_of_time/old_hillsbrad/def_old_hillsbrad.h \
-scripts/zone/caverns_of_time/old_hillsbrad/instance_old_hillsbrad.cpp \
-scripts/zone/caverns_of_time/old_hillsbrad/old_hillsbrad.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/boss_fathomlord_karathress.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/boss_lurker_below.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/boss_leotheras_the_blind.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/boss_morogrim_tidewalker.cpp \
-scripts/zone/coilfang_resevoir/serpent_shrine/def_serpent_shrine.h \
-scripts/zone/coilfang_resevoir/serpent_shrine/instance_serpent_shrine.cpp \
-scripts/zone/coilfang_resevoir/steam_vault/boss_hydromancer_thespia.cpp \
-scripts/zone/coilfang_resevoir/steam_vault/boss_mekgineer_steamrigger.cpp \
-scripts/zone/coilfang_resevoir/steam_vault/boss_warlord_kalithresh.cpp \
-scripts/zone/coilfang_resevoir/steam_vault/def_steam_vault.h \
-scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp \
-scripts/zone/coilfang_resevoir/underbog/boss_hungarfen.cpp \
-scripts/zone/darkshore/darkshore.cpp \
-scripts/zone/deadmines/deadmines.cpp \
-scripts/zone/deadmines/def_deadmines.h \
-scripts/zone/dun_morogh/dun_morogh.cpp \
-scripts/zone/dustwallow_marsh/dustwallow_marsh.cpp \
-scripts/zone/eastern_plaguelands/eastern_plaguelands.cpp \
-scripts/zone/elwynn_forest/elwynn_forest.cpp \
-scripts/zone/eversong_woods/eversong_woods.cpp \
-scripts/zone/felwood/felwood.cpp \
-scripts/zone/feralas/feralas.cpp \
-scripts/zone/ghostlands/ghostlands.cpp \
-scripts/zone/gruuls_lair/boss_gruul.cpp \
-scripts/zone/gruuls_lair/boss_high_king_maulgar.cpp \
-scripts/zone/gruuls_lair/def_gruuls_lair.h \
-scripts/zone/gruuls_lair/instance_gruuls_lair.cpp \
-scripts/zone/hellfire_citadel/blood_furnace/boss_broggok.cpp \
-scripts/zone/hellfire_citadel/blood_furnace/boss_kelidan_the_breaker.cpp \
-scripts/zone/hellfire_citadel/blood_furnace/boss_the_maker.cpp \
-scripts/zone/hellfire_citadel/blood_furnace/instance_blood_furnace.cpp \
-scripts/zone/hellfire_citadel/blood_furnace/def_blood_furnace.h \
-scripts/zone/hellfire_citadel/hellfire_ramparts/boss_omor_the_unscarred.cpp \
-scripts/zone/hellfire_citadel/hellfire_ramparts/boss_watchkeeper_gargolmar.cpp \
-scripts/zone/hellfire_citadel/hellfire_ramparts/boss_vazruden_the_herald.cpp \
-scripts/zone/hellfire_citadel/magtheridons_lair/boss_magtheridon.cpp \
-scripts/zone/hellfire_citadel/magtheridons_lair/def_magtheridons_lair.h \
-scripts/zone/hellfire_citadel/magtheridons_lair/instance_magtheridons_lair.cpp \
-scripts/zone/hellfire_citadel/shattered_halls/boss_nethekurse.cpp \
-scripts/zone/hellfire_citadel/shattered_halls/boss_warbringer_omrogg.cpp \
-scripts/zone/hellfire_citadel/shattered_halls/boss_warchief_kargath_bladefist.cpp \
-scripts/zone/hellfire_citadel/shattered_halls/def_shattered_halls.h \
-scripts/zone/hellfire_citadel/shattered_halls/instance_shattered_halls.cpp \
-scripts/zone/hellfire_peninsula/boss_doomlord_kazzak.cpp \
-scripts/zone/hellfire_peninsula/hellfire_peninsula.cpp \
-scripts/zone/ironforge/ironforge.cpp \
-scripts/zone/isle_of_queldanas/isle_of_queldanas.cpp \
-scripts/zone/karazhan/boss_curator.cpp \
-scripts/zone/karazhan/boss_maiden_of_virtue.cpp \
-scripts/zone/karazhan/boss_midnight.cpp \
-scripts/zone/karazhan/boss_moroes.cpp \
-scripts/zone/karazhan/boss_netherspite.cpp \
-scripts/zone/karazhan/boss_nightbane.cpp \
-scripts/zone/karazhan/boss_prince_malchezaar.cpp \
-scripts/zone/karazhan/boss_shade_of_aran.cpp \
-scripts/zone/karazhan/boss_terestian_illhoof.cpp \
-scripts/zone/karazhan/bosses_opera.cpp \
-scripts/zone/karazhan/def_karazhan.h \
-scripts/zone/karazhan/instance_karazhan.cpp \
-scripts/zone/karazhan/karazhan.cpp \
-scripts/zone/loch_modan/loch_modan.cpp \
-scripts/zone/magisters_terrace/boss_felblood_kaelthas.cpp \
-scripts/zone/magisters_terrace/boss_priestess_delrissa.cpp \
-scripts/zone/magisters_terrace/boss_selin_fireheart.cpp \
-scripts/zone/magisters_terrace/boss_vexallus.cpp \
-scripts/zone/magisters_terrace/def_magisters_terrace.h \
-scripts/zone/magisters_terrace/instance_magisters_terrace.cpp \
-scripts/zone/maraudon/boss_celebras_the_cursed.cpp \
-scripts/zone/maraudon/boss_landslide.cpp \
-scripts/zone/maraudon/boss_noxxion.cpp \
-scripts/zone/maraudon/boss_princess_theradras.cpp \
-scripts/zone/molten_core/boss_baron_geddon.cpp \
-scripts/zone/molten_core/boss_garr.cpp \
-scripts/zone/molten_core/boss_gehennas.cpp \
-scripts/zone/molten_core/boss_golemagg.cpp \
-scripts/zone/molten_core/boss_lucifron.cpp \
-scripts/zone/molten_core/boss_magmadar.cpp \
-scripts/zone/molten_core/boss_majordomo_executus.cpp \
-scripts/zone/molten_core/boss_ragnaros.cpp \
-scripts/zone/molten_core/boss_shazzrah.cpp \
-scripts/zone/molten_core/boss_sulfuron_harbinger.cpp \
-scripts/zone/molten_core/def_molten_core.h \
-scripts/zone/molten_core/instance_molten_core.cpp \
-scripts/zone/molten_core/molten_core.cpp \
-scripts/zone/moonglade/moonglade.cpp \
-scripts/zone/mulgore/mulgore.cpp \
-scripts/zone/nagrand/nagrand.cpp \
-scripts/zone/naxxramas/boss_anubrekhan.cpp \
-scripts/zone/naxxramas/boss_faerlina.cpp \
-scripts/zone/naxxramas/boss_gluth.cpp \
-scripts/zone/naxxramas/boss_gothik.cpp \
-scripts/zone/naxxramas/boss_grobbulus.cpp \
-scripts/zone/naxxramas/boss_heigan.cpp \
-scripts/zone/naxxramas/boss_highlord_mograine.cpp \
-scripts/zone/naxxramas/boss_kelthuzad.cpp \
-scripts/zone/naxxramas/boss_four_horsemen.cpp \
-scripts/zone/naxxramas/boss_loatheb.cpp \
-scripts/zone/naxxramas/boss_maexxna.cpp \
-scripts/zone/naxxramas/boss_noth.cpp \
-scripts/zone/naxxramas/boss_patchwerk.cpp \
-scripts/zone/naxxramas/boss_razuvious.cpp \
-scripts/zone/naxxramas/boss_sapphiron.cpp \
-scripts/zone/naxxramas/boss_thaddius.cpp \
-scripts/zone/naxxramas/instance_naxxramas.cpp \
-scripts/zone/netherstorm/netherstorm.cpp \
-scripts/zone/onyxias_lair/boss_onyxia.cpp \
-scripts/zone/orgrimmar/orgrimmar.cpp \
-scripts/zone/razorfen_downs/boss_amnennar_the_coldbringer.cpp \
-scripts/zone/razorfen_kraul/razorfen_kraul.cpp \
-scripts/zone/ruins_of_ahnqiraj/boss_ayamiss.cpp \
-scripts/zone/ruins_of_ahnqiraj/boss_buru.cpp \
-scripts/zone/ruins_of_ahnqiraj/boss_kurinnaxx.cpp \
-scripts/zone/ruins_of_ahnqiraj/boss_moam.cpp \
-scripts/zone/ruins_of_ahnqiraj/boss_ossirian.cpp \
-scripts/zone/ruins_of_ahnqiraj/boss_rajaxx.cpp \
-scripts/zone/ruins_of_ahnqiraj/instance_ruins_of_ahnqiraj.cpp \
-scripts/zone/scarlet_monastery/boss_arcanist_doan.cpp \
-scripts/zone/scarlet_monastery/boss_azshir_the_sleepless.cpp \
-scripts/zone/scarlet_monastery/boss_bloodmage_thalnos.cpp \
-scripts/zone/scarlet_monastery/boss_herod.cpp \
-scripts/zone/scarlet_monastery/boss_high_inquisitor_fairbanks.cpp \
-scripts/zone/scarlet_monastery/boss_houndmaster_loksey.cpp \
-scripts/zone/scarlet_monastery/boss_interrogator_vishas.cpp \
-scripts/zone/scarlet_monastery/boss_scorn.cpp \
-scripts/zone/scarlet_monastery/boss_headless_horseman.cpp \
-scripts/zone/scarlet_monastery/boss_mograine_and_whitemane.cpp \
-scripts/zone/scarlet_monastery/instance_scarlet_monastery.cpp \
-scripts/zone/scarlet_monastery/def_scarlet_monastery.h \
-scripts/zone/scholomance/boss_darkmaster_gandling.cpp \
-scripts/zone/scholomance/boss_death_knight_darkreaver.cpp \
-scripts/zone/scholomance/boss_doctor_theolen_krastinov.cpp \
-scripts/zone/scholomance/boss_illucia_barov.cpp \
-scripts/zone/scholomance/boss_instructor_malicia.cpp \
-scripts/zone/scholomance/boss_jandice_barov.cpp \
-scripts/zone/scholomance/boss_kormok.cpp \
-scripts/zone/scholomance/boss_lord_alexei_barov.cpp \
-scripts/zone/scholomance/boss_lorekeeper_polkelt.cpp \
-scripts/zone/scholomance/boss_ras_frostwhisper.cpp \
-scripts/zone/scholomance/boss_the_ravenian.cpp \
-scripts/zone/scholomance/boss_vectus.cpp \
-scripts/zone/scholomance/def_scholomance.h \
-scripts/zone/scholomance/instance_scholomance.cpp \
-scripts/zone/searing_gorge/searing_gorge.cpp \
-scripts/zone/shadowfang_keep/def_shadowfang_keep.h \
-scripts/zone/shadowfang_keep/instance_shadowfang_keep.cpp \
-scripts/zone/shadowfang_keep/shadowfang_keep.cpp \
-scripts/zone/shadowmoon_valley/boss_doomwalker.cpp \
-scripts/zone/shadowmoon_valley/shadowmoon_valley.cpp \
-scripts/zone/shattrath/shattrath_city.cpp \
-scripts/zone/silithus/silithus.cpp \
-scripts/zone/silvermoon/silvermoon_city.cpp \
-scripts/zone/silverpine_forest/silverpine_forest.cpp \
-scripts/zone/stonetalon_mountains/stonetalon_mountains.cpp \
-scripts/zone/stormwind/stormwind_city.cpp \
-scripts/zone/stranglethorn_vale/stranglethorn_vale.cpp \
-scripts/zone/stratholme/boss_baron_rivendare.cpp \
-scripts/zone/stratholme/boss_baroness_anastari.cpp \
-scripts/zone/stratholme/boss_cannon_master_willey.cpp \
-scripts/zone/stratholme/boss_dathrohan_balnazzar.cpp \
-scripts/zone/stratholme/boss_magistrate_barthilas.cpp \
-scripts/zone/stratholme/boss_maleki_the_pallid.cpp \
-scripts/zone/stratholme/boss_nerubenkan.cpp \
-scripts/zone/stratholme/boss_order_of_silver_hand.cpp \
-scripts/zone/stratholme/boss_postmaster_malown.cpp \
-scripts/zone/stratholme/boss_ramstein_the_gorger.cpp \
-scripts/zone/stratholme/boss_timmy_the_cruel.cpp \
-scripts/zone/stratholme/def_stratholme.h \
-scripts/zone/stratholme/instance_stratholme.cpp \
-scripts/zone/stratholme/stratholme.cpp \
-scripts/zone/sunwell_plateau/boss_eredar_twins.cpp \
-scripts/zone/sunwell_plateau/boss_felmyst.cpp \
-scripts/zone/sunwell_plateau/boss_brutallus.cpp \
-scripts/zone/sunwell_plateau/boss_kalecgos.cpp \
-scripts/zone/sunwell_plateau/def_sunwell_plateau.h \
-scripts/zone/sunwell_plateau/instance_sunwell_plateau.cpp \
-scripts/zone/tanaris/tanaris.cpp \
-scripts/zone/tempest_keep/arcatraz/arcatraz.cpp \
-scripts/zone/tempest_keep/arcatraz/boss_harbinger_skyriss.cpp \
-scripts/zone/tempest_keep/arcatraz/def_arcatraz.h \
-scripts/zone/tempest_keep/arcatraz/instance_arcatraz.cpp \
-scripts/zone/tempest_keep/botanica/boss_high_botanist_freywinn.cpp \
-scripts/zone/tempest_keep/botanica/boss_laj.cpp \
-scripts/zone/tempest_keep/botanica/boss_warp_splinter.cpp \
-scripts/zone/tempest_keep/the_eye/boss_alar.cpp \
-scripts/zone/tempest_keep/the_eye/boss_astromancer.cpp \
-scripts/zone/tempest_keep/the_eye/boss_kaelthas.cpp \
-scripts/zone/tempest_keep/the_eye/boss_void_reaver.cpp \
-scripts/zone/tempest_keep/the_eye/def_the_eye.h \
-scripts/zone/tempest_keep/the_eye/instance_the_eye.cpp \
-scripts/zone/tempest_keep/the_eye/the_eye.cpp \
-scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_gyrokill.cpp \
-scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_ironhand.cpp \
-scripts/zone/tempest_keep/the_mechanar/boss_nethermancer_sepethrea.cpp \
-scripts/zone/tempest_keep/the_mechanar/boss_pathaleon_the_calculator.cpp \
-scripts/zone/tempest_keep/the_mechanar/def_mechanar.h \
-scripts/zone/tempest_keep/the_mechanar/instance_mechanar.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_bug_trio.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_cthun.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_fankriss.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_huhuran.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_ouro.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_sartura.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_skeram.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_twinemperors.cpp \
-scripts/zone/temple_of_ahnqiraj/boss_viscidus.cpp \
-scripts/zone/temple_of_ahnqiraj/def_temple_of_ahnqiraj.h \
-scripts/zone/temple_of_ahnqiraj/instance_temple_of_ahnqiraj.cpp \
-scripts/zone/temple_of_ahnqiraj/mob_anubisath_sentinel.cpp \
-scripts/zone/terokkar_forest/terokkar_forest.cpp \
-scripts/zone/thunder_bluff/thunder_bluff.cpp \
-scripts/zone/tirisfal_glades/tirisfal_glades.cpp \
-scripts/zone/thousand_needles/thousand_needles.cpp \
-scripts/zone/uldaman/boss_archaedas.cpp \
-scripts/zone/uldaman/instance_uldaman.cpp \
-scripts/zone/uldaman/boss_ironaya.cpp \
-scripts/zone/uldaman/uldaman.cpp \
-scripts/zone/undercity/undercity.cpp \
-scripts/zone/ungoro_crater/ungoro_crater.cpp \
-scripts/zone/wailing_caverns/instance_wailing_caverns.cpp \
-scripts/zone/western_plaguelands/western_plaguelands.cpp \
-scripts/zone/westfall/westfall.cpp \
-scripts/zone/winterspring/winterspring.cpp \
-scripts/zone/zangarmarsh/zangarmarsh.cpp \
-scripts/zone/zulaman/boss_akilzon.cpp \
-scripts/zone/zulaman/boss_halazzi.cpp \
-scripts/zone/zulaman/boss_hexlord.cpp \
-scripts/zone/zulaman/boss_janalai.cpp \
-scripts/zone/zulaman/boss_nalorakk.cpp \
-scripts/zone/zulaman/boss_zuljin.cpp \
-scripts/zone/zulaman/def_zulaman.h \
-scripts/zone/zulaman/instance_zulaman.cpp \
-scripts/zone/zulaman/zulaman.cpp \
-scripts/zone/zulfarrak/zulfarrak.cpp \
-scripts/zone/zulgurub/boss_arlokk.cpp \
-scripts/zone/zulgurub/boss_gahzranka.cpp \
-scripts/zone/zulgurub/boss_grilek.cpp \
-scripts/zone/zulgurub/boss_hakkar.cpp \
-scripts/zone/zulgurub/boss_hazzarah.cpp \
-scripts/zone/zulgurub/boss_jeklik.cpp \
-scripts/zone/zulgurub/boss_jindo.cpp \
-scripts/zone/zulgurub/boss_mandokir.cpp \
-scripts/zone/zulgurub/boss_marli.cpp \
-scripts/zone/zulgurub/boss_renataki.cpp \
-scripts/zone/zulgurub/boss_thekal.cpp \
-scripts/zone/zulgurub/boss_venoxis.cpp \
-scripts/zone/zulgurub/boss_wushoolay.cpp \
-scripts/zone/zulgurub/def_zulgurub.h \
-scripts/zone/zulgurub/instance_zulgurub.cpp \
-system.cpp
-
-## libtool settings
-# API versioning
-# Increase the last number, if you do bug fixes only, no interface change.
-# Increase the middle number when you augmented the interface ( aka add new exported functions ).
-# Increase the first number when you break old interface. ( aka remove/change previously exported functions ).
-libtrinityscript_la_LIBFLAGS = -version-info 0:0:1
-libtrinityscript_la_LIBADD = $(MYSQL_LIBS) $(POSTGRE_LIBS)
-
-## Additional files to install
-## sysconf_DATA =
-
-## EXTRA_DIST =
-
-## Prevend overwrite of the config file, if its already installed
-install-data-hook:
- @list='$(sysconf_DATA)'; for p in $$list; do \
- dest=`echo $$p | sed -e s/.dist//`; \
- if test -f $(DESTDIR)$(sysconfdir)/$$dest; then \
- echo "$@ will not overwrite existing $(DESTDIR)$(sysconfdir)/$$dest"; \
- else \
- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$dest"; \
- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$dest; \
- fi; \
- done
-
-
-
diff --git a/src/framework/Makefile.am b/src/framework/Makefile.am
deleted file mode 100644
index 081b1cc9b44..00000000000
--- a/src/framework/Makefile.am
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = $(TRINI_INCLUDES) -I$(srcdir)
-
-## Build MaNGOS framework library as convenience library.
-# libMaNGOSScript shared library will later be reused by world server daemon.
-noinst_LIBRARIES = libmangosframework.a
-libmangosframework_a_SOURCES = \
- Policies/ObjectLifeTime.cpp \
- Utilities/EventProcessor.cpp
-
-## Additional files to include when running 'make dist'
-# Source and header files for the Framework.
-EXTRA_DIST = \
- Dynamic/FactoryHolder.h \
- Dynamic/ObjectRegistry.h \
- GameSystem/Grid.h \
- GameSystem/GridLoader.h \
- GameSystem/GridRefManager.h \
- GameSystem/GridReference.h \
- GameSystem/NGrid.h \
- GameSystem/TypeContainer.h \
- GameSystem/TypeContainerFunctions.h \
- GameSystem/TypeContainerFunctionsPtr.h \
- GameSystem/TypeContainerVisitor.h \
- Network/SocketDefines.h \
- Platform/CompilerDefs.h \
- Platform/Define.h \
- Policies/CreationPolicy.h \
- Policies/ObjectLifeTime.h \
- Policies/Singleton.h \
- Policies/SingletonImp.h \
- Policies/ThreadingModel.h \
- Utilities/CountedReference/Reference.h \
- Utilities/CountedReference/ReferenceHolder.h \
- Utilities/CountedReference/ReferenceImpl.h \
- Utilities/LinkedReference/RefManager.h \
- Utilities/LinkedReference/Reference.h \
- Utilities/ByteConverter.h \
- Utilities/Callback.h \
- Utilities/EventProcessor.h \
- Utilities/UnorderedMap.h \
- Utilities/LinkedList.h \
- Utilities/TypeList.h
diff --git a/src/game/Makefile.am b/src/game/Makefile.am
deleted file mode 100644
index a8a42d26a61..00000000000
--- a/src/game/Makefile.am
+++ /dev/null
@@ -1,306 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS =
-
-## Build MaNGOS game library as convenience library.
-# All libraries will be convenience libraries. Might be changed to shared
-# later.
-noinst_LIBRARIES = libgame.a
-
-libgame_a_CPPFLAGS = \
-$(MYSQL_INCLUDES) \
-$(POSTGRE_INCLUDES) \
-$(TRINI_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/src/framework \
--I$(top_srcdir)/src/shared \
--I$(top_srcdir)/src/shared/vmap
-
-# libmangossgame library will later be reused by ...
-libgame_a_SOURCES = \
-$(srcdir)/AccountMgr.cpp \
-$(srcdir)/AccountMgr.h \
-$(srcdir)/AddonHandler.cpp \
-$(srcdir)/AddonHandler.h \
-$(srcdir)/AggressorAI.cpp \
-$(srcdir)/AggressorAI.h \
-$(srcdir)/AnimalRandomMovementGenerator.h \
-$(srcdir)/ArenaTeam.cpp \
-$(srcdir)/ArenaTeam.h \
-$(srcdir)/ArenaTeamHandler.cpp \
-$(srcdir)/AuctionHouseHandler.cpp \
-$(srcdir)/AuctionHouseBot.cpp \
-$(srcdir)/AuctionHouseBot.h \
-$(srcdir)/AuctionHouseMgr.cpp \
-$(srcdir)/AuctionHouseMgr.h \
-$(srcdir)/Bag.cpp \
-$(srcdir)/Bag.h \
-$(srcdir)/BattleGround.cpp \
-$(srcdir)/BattleGroundAA.cpp \
-$(srcdir)/BattleGroundAB.cpp \
-$(srcdir)/BattleGroundAV.cpp \
-$(srcdir)/BattleGroundBE.cpp \
-$(srcdir)/BattleGroundEY.cpp \
-$(srcdir)/BattleGroundNA.cpp \
-$(srcdir)/BattleGroundRL.cpp \
-$(srcdir)/BattleGroundWS.cpp \
-$(srcdir)/BattleGround.h \
-$(srcdir)/BattleGroundAA.h \
-$(srcdir)/BattleGroundAB.h \
-$(srcdir)/BattleGroundAV.h \
-$(srcdir)/BattleGroundBE.h \
-$(srcdir)/BattleGroundEY.h \
-$(srcdir)/BattleGroundNA.h \
-$(srcdir)/BattleGroundRL.h \
-$(srcdir)/BattleGroundWS.h \
-$(srcdir)/BattleGroundHandler.cpp \
-$(srcdir)/BattleGroundMgr.cpp \
-$(srcdir)/BattleGroundMgr.h \
-$(srcdir)/Cell.h \
-$(srcdir)/CellImpl.h \
-$(srcdir)/Channel.cpp \
-$(srcdir)/Channel.h \
-$(srcdir)/ChannelHandler.cpp \
-$(srcdir)/ChannelMgr.h \
-$(srcdir)/CharacterHandler.cpp \
-$(srcdir)/Chat.cpp \
-$(srcdir)/Chat.h \
-$(srcdir)/ChatHandler.cpp \
-$(srcdir)/CombatHandler.cpp \
-$(srcdir)/ConfusedMovementGenerator.cpp \
-$(srcdir)/ConfusedMovementGenerator.h \
-$(srcdir)/Corpse.cpp \
-$(srcdir)/Corpse.h \
-$(srcdir)/CreatureAI.cpp \
-$(srcdir)/CreatureAI.h \
-$(srcdir)/CreatureAIImpl.h \
-$(srcdir)/CreatureAIRegistry.cpp \
-$(srcdir)/CreatureAIRegistry.h \
-$(srcdir)/CreatureAISelector.cpp \
-$(srcdir)/CreatureAISelector.h \
-$(srcdir)/CreatureGroups.cpp \
-$(srcdir)/CreatureGroups.h \
-$(srcdir)/Creature.cpp \
-$(srcdir)/Creature.h \
-$(srcdir)/Debugcmds.cpp \
-$(srcdir)/DestinationHolder.cpp \
-$(srcdir)/DestinationHolder.h \
-$(srcdir)/DestinationHolderImp.h \
-$(srcdir)/DuelHandler.cpp \
-$(srcdir)/DynamicObject.cpp \
-$(srcdir)/DynamicObject.h \
-$(srcdir)/FleeingMovementGenerator.cpp \
-$(srcdir)/FleeingMovementGenerator.h \
-$(srcdir)/Formulas.h \
-$(srcdir)/GameEvent.cpp \
-$(srcdir)/GameEvent.h \
-$(srcdir)/GameObject.cpp \
-$(srcdir)/GameObject.h \
-$(srcdir)/GlobalEvents.cpp \
-$(srcdir)/GlobalEvents.h \
-$(srcdir)/GossipDef.cpp \
-$(srcdir)/GossipDef.h \
-$(srcdir)/GridDefines.h \
-$(srcdir)/GridNotifiers.cpp \
-$(srcdir)/GridNotifiers.h \
-$(srcdir)/GridNotifiersImpl.h \
-$(srcdir)/GridStates.cpp \
-$(srcdir)/GridStates.h \
-$(srcdir)/Group.cpp \
-$(srcdir)/Group.h \
-$(srcdir)/GroupHandler.cpp \
-$(srcdir)/GuardAI.cpp \
-$(srcdir)/GuardAI.h \
-$(srcdir)/Guild.cpp \
-$(srcdir)/Guild.h \
-$(srcdir)/GuildHandler.cpp \
-$(srcdir)/HomeMovementGenerator.cpp \
-$(srcdir)/HomeMovementGenerator.h \
-$(srcdir)/HostilRefManager.cpp \
-$(srcdir)/HostilRefManager.h \
-$(srcdir)/IdleMovementGenerator.cpp \
-$(srcdir)/IdleMovementGenerator.h \
-$(srcdir)/InstanceData.cpp \
-$(srcdir)/InstanceData.h \
-$(srcdir)/InstanceSaveMgr.cpp \
-$(srcdir)/InstanceSaveMgr.h \
-$(srcdir)/Item.cpp \
-$(srcdir)/Item.h \
-$(srcdir)/ItemEnchantmentMgr.cpp \
-$(srcdir)/ItemEnchantmentMgr.h \
-$(srcdir)/ItemHandler.cpp \
-$(srcdir)/ItemPrototype.h \
-$(srcdir)/Language.h \
-$(srcdir)/Level0.cpp \
-$(srcdir)/Level1.cpp \
-$(srcdir)/Level2.cpp \
-$(srcdir)/Level3.cpp \
-$(srcdir)/LFGHandler.cpp \
-$(srcdir)/LootHandler.cpp \
-$(srcdir)/LootMgr.cpp \
-$(srcdir)/LootMgr.h \
-$(srcdir)/Mail.cpp \
-$(srcdir)/Mail.h \
-$(srcdir)/Map.cpp \
-$(srcdir)/Map.h \
-$(srcdir)/MapInstanced.cpp \
-$(srcdir)/MapInstanced.h \
-$(srcdir)/MapManager.cpp \
-$(srcdir)/MapManager.h \
-$(srcdir)/MiscHandler.cpp \
-$(srcdir)/MotionMaster.cpp \
-$(srcdir)/MotionMaster.h \
-$(srcdir)/MovementGenerator.cpp \
-$(srcdir)/MovementGenerator.h \
-$(srcdir)/MovementGeneratorImpl.h \
-$(srcdir)/MovementHandler.cpp \
-$(srcdir)/NPCHandler.cpp \
-$(srcdir)/NPCHandler.h \
-$(srcdir)/NullCreatureAI.cpp \
-$(srcdir)/NullCreatureAI.h \
-$(srcdir)/ObjectAccessor.cpp \
-$(srcdir)/ObjectAccessor.h \
-$(srcdir)/Object.cpp \
-$(srcdir)/ObjectDefines.h \
-$(srcdir)/ObjectGridLoader.cpp \
-$(srcdir)/ObjectGridLoader.h \
-$(srcdir)/Object.h \
-$(srcdir)/ObjectMgr.cpp \
-$(srcdir)/ObjectMgr.h \
-$(srcdir)/Opcodes.cpp \
-$(srcdir)/Opcodes.h \
-$(srcdir)/OutdoorPvP.cpp \
-$(srcdir)/OutdoorPvP.h \
-$(srcdir)/OutdoorPvPEP.cpp \
-$(srcdir)/OutdoorPvPEP.h \
-$(srcdir)/OutdoorPvPHP.cpp \
-$(srcdir)/OutdoorPvPHP.h \
-$(srcdir)/OutdoorPvPMgr.cpp \
-$(srcdir)/OutdoorPvPMgr.h \
-$(srcdir)/OutdoorPvPNA.cpp \
-$(srcdir)/OutdoorPvPNA.h \
-$(srcdir)/OutdoorPvPObjectiveAI.cpp \
-$(srcdir)/OutdoorPvPObjectiveAI.h \
-$(srcdir)/OutdoorPvPSI.cpp \
-$(srcdir)/OutdoorPvPSI.h \
-$(srcdir)/OutdoorPvPTF.cpp \
-$(srcdir)/OutdoorPvPTF.h \
-$(srcdir)/OutdoorPvPZM.cpp \
-$(srcdir)/OutdoorPvPZM.h \
-$(srcdir)/Path.h \
-$(srcdir)/PetAI.cpp \
-$(srcdir)/PetAI.h \
-$(srcdir)/Pet.cpp \
-$(srcdir)/Pet.h \
-$(srcdir)/PetHandler.cpp \
-$(srcdir)/PetitionsHandler.cpp \
-$(srcdir)/Player.cpp \
-$(srcdir)/Player.h \
-$(srcdir)/PlayerDump.cpp \
-$(srcdir)/PlayerDump.h \
-$(srcdir)/PointMovementGenerator.cpp \
-$(srcdir)/PointMovementGenerator.h \
-$(srcdir)/PossessedAI.cpp \
-$(srcdir)/PossessedAI.h \
-$(srcdir)/QueryHandler.cpp \
-$(srcdir)/QuestDef.cpp \
-$(srcdir)/QuestDef.h \
-$(srcdir)/QuestHandler.cpp \
-$(srcdir)/RandomMovementGenerator.cpp \
-$(srcdir)/RandomMovementGenerator.h \
-$(srcdir)/ReactorAI.cpp \
-$(srcdir)/ReactorAI.h \
-$(srcdir)/ScriptCalls.cpp \
-$(srcdir)/ScriptCalls.h \
-$(srcdir)/SharedDefines.h \
-$(srcdir)/SkillHandler.cpp \
-$(srcdir)/SpellAuraDefines.h \
-$(srcdir)/SpellAuras.cpp \
-$(srcdir)/SpellAuras.h \
-$(srcdir)/Spell.cpp \
-$(srcdir)/SpellEffects.cpp \
-$(srcdir)/Spell.h \
-$(srcdir)/SkillDiscovery.cpp \
-$(srcdir)/SkillDiscovery.h \
-$(srcdir)/SkillExtraItems.cpp \
-$(srcdir)/SkillExtraItems.h \
-$(srcdir)/SpellHandler.cpp \
-$(srcdir)/SocialMgr.cpp \
-$(srcdir)/SocialMgr.h \
-$(srcdir)/SpellMgr.cpp \
-$(srcdir)/SpellMgr.h \
-$(srcdir)/StatSystem.cpp \
-$(srcdir)/TargetedMovementGenerator.cpp \
-$(srcdir)/TargetedMovementGenerator.h \
-$(srcdir)/TaxiHandler.cpp \
-$(srcdir)/TemporarySummon.cpp \
-$(srcdir)/TemporarySummon.h \
-$(srcdir)/TicketHandler.cpp \
-$(srcdir)/TicketMgr.cpp \
-$(srcdir)/TicketMgr.h \
-$(srcdir)/Tools.cpp \
-$(srcdir)/Tools.h \
-$(srcdir)/TotemAI.cpp \
-$(srcdir)/TotemAI.h \
-$(srcdir)/Totem.cpp \
-$(srcdir)/Totem.h \
-$(srcdir)/TradeHandler.cpp \
-$(srcdir)/Transports.cpp \
-$(srcdir)/Transports.h \
-$(srcdir)/ThreatManager.cpp \
-$(srcdir)/ThreatManager.h \
-$(srcdir)/Traveller.h \
-$(srcdir)/Unit.cpp \
-$(srcdir)/Unit.h \
-$(srcdir)/UnitEvents.h \
-$(srcdir)/UpdateData.cpp \
-$(srcdir)/UpdateData.h \
-$(srcdir)/UpdateFields.h \
-$(srcdir)/UpdateMask.h \
-$(srcdir)/VoiceChatHandler.cpp \
-$(srcdir)/WaypointManager.cpp \
-$(srcdir)/WaypointManager.h \
-$(srcdir)/WaypointMovementGenerator.cpp \
-$(srcdir)/WaypointMovementGenerator.h \
-$(srcdir)/Weather.cpp \
-$(srcdir)/Weather.h \
-$(srcdir)/World.cpp \
-$(srcdir)/World.h \
-$(srcdir)/WorldLog.cpp \
-$(srcdir)/WorldLog.h \
-$(srcdir)/WorldSession.cpp \
-$(srcdir)/WorldSession.h \
-$(srcdir)/WorldSocket.cpp \
-$(srcdir)/WorldSocket.h \
-$(srcdir)/WorldSocketMgr.cpp \
-$(srcdir)/WorldSocketMgr.h \
-$(srcdir)/FollowerReference.cpp \
-$(srcdir)/FollowerReference.h \
-$(srcdir)/FollowerRefManager.h \
-$(srcdir)/GroupReference.cpp \
-$(srcdir)/GroupReference.h \
-$(srcdir)/GroupRefManager.h
-
-## Additional files to include when running 'make dist'
-# Nothing yet.
diff --git a/src/shared/Auth/Makefile.am b/src/shared/Auth/Makefile.am
deleted file mode 100644
index 9c71613a0de..00000000000
--- a/src/shared/Auth/Makefile.am
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = $(MYSQL_INCLUDES) $(POSTGRE_INCLUDES) -I$(top_builddir)/src/shared -I$(srcdir) -I$(srcdir)/../../../dep/include -I$(srcdir)/../../framework -I$(srcdir)/../../shared -I$(srcdir)/../../../dep/include/g3dlite
-
-## Build MaNGOS shared library and its parts as convenience library.
-# All libraries will be convenience libraries. Might be changed to shared
-# later.
-noinst_LIBRARIES = libmangosauth.a
-
-libmangosauth_a_SOURCES = \
- AuthCrypt.cpp \
- AuthCrypt.h \
- BigNumber.cpp \
- BigNumber.h \
- Hmac.cpp \
- Hmac.h \
- Sha1.cpp \
- Sha1.h \
- md5.c \
- md5.h
diff --git a/src/shared/Config/Makefile.am b/src/shared/Config/Makefile.am
deleted file mode 100644
index 23188ba3447..00000000000
--- a/src/shared/Config/Makefile.am
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = $(MYSQL_INCLUDES) $(POSTGRE_INCLUDES) -I$(top_builddir)/src/shared -I$(srcdir) -I$(srcdir)/../../../dep/include -I$(srcdir)/../../framework -I$(srcdir)/../../shared -I$(srcdir)/../../../dep/include/g3dlite
-
-## Build MaNGOS shared library and its parts as convenience library.
-# All libraries will be convenience libraries. Might be changed to shared
-# later.
-noinst_LIBRARIES = libmangosconfig.a
-
-libmangosconfig_a_SOURCES = \
- dotconfpp/dotconfpp.cpp \
- dotconfpp/dotconfpp.h \
- dotconfpp/mempool.cpp \
- dotconfpp/mempool.h \
- Config.cpp \
- Config.h \
- ConfigEnv.h
-
-# VC++ project workspace for dotconfpp
-EXTRA_DIST = \
- ConfigLibrary.vcproj
diff --git a/src/shared/Database/Makefile.am b/src/shared/Database/Makefile.am
deleted file mode 100644
index 20cb2c87875..00000000000
--- a/src/shared/Database/Makefile.am
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Sub-directories to parse
-
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = $(MYSQL_INCLUDES) $(POSTGRE_INCLUDES) -I$(top_builddir)/src/shared -I$(srcdir) -I$(srcdir)/../../../dep/include -I$(srcdir)/../../framework -I$(srcdir)/../../shared -I$(srcdir)/../../../dep/include/g3dlite
-
-## Build MaNGOS shared library and its parts as convenience library.
-# All libraries will be convenience libraries. Might be changed to shared
-# later.
-noinst_LIBRARIES = libmangosdatabase.a
-
-libmangosdatabase_a_SOURCES = \
- DBCStores.cpp \
- DBCStores.h \
- DBCStructure.h \
- DBCfmt.cpp \
- Database.cpp \
- Database.h \
- DatabaseEnv.h \
- DatabaseImpl.h \
- DatabaseMysql.cpp \
- DatabasePostgre.cpp \
- DatabaseMysql.h \
- DatabasePostgre.h \
- DatabaseSqlite.cpp \
- DatabaseSqlite.h \
- Field.cpp \
- Field.h \
- MySQLDelayThread.h \
- PGSQLDelayThread.h \
- QueryResult.h \
- QueryResultMysql.cpp \
- QueryResultMysql.h \
- QueryResultPostgre.cpp \
- QueryResultPostgre.h \
- QueryResultSqlite.cpp \
- QueryResultSqlite.h \
- SQLStorage.cpp \
- SQLStorage.h \
- SqlDelayThread.cpp \
- SqlDelayThread.h \
- SqlOperations.cpp \
- SqlOperations.h \
- dbcfile.cpp \
- dbcfile.h
diff --git a/src/shared/Makefile.am b/src/shared/Makefile.am
deleted file mode 100644
index 3a86f148521..00000000000
--- a/src/shared/Makefile.am
+++ /dev/null
@@ -1,138 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## TODO move vmaps in src dir instead of src/shared
-
-## Sub-directories to parse
-SUBDIRS = vmap
-
-## Build MaNGOS shared library and its parts as convenience library.
-# All libraries will be convenience libraries. Might be changed to shared
-# later.
-noinst_LIBRARIES = libshared.a
-
-libshared_a_CPPFLAGS = \
-$(MYSQL_INCLUDES) \
-$(POSTGRE_INCLUDES) \
-$(TRINI_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/src/framework
-
-# libmangosshared library will later be reused by ...
-libshared_a_SOURCES = \
-$(srcdir)/Base.cpp \
-$(srcdir)/Base.h \
-$(srcdir)/ByteBuffer.h \
-$(srcdir)/Common.cpp \
-$(srcdir)/Common.h \
-$(srcdir)/Errors.h \
-$(srcdir)/Log.cpp \
-$(srcdir)/Log.h \
-$(srcdir)/Mthread.cpp \
-$(srcdir)/Mthread.h \
-$(srcdir)/ProgressBar.cpp \
-$(srcdir)/ProgressBar.h \
-$(srcdir)/Timer.h \
-$(srcdir)/Util.cpp \
-$(srcdir)/Util.h \
-$(srcdir)/WorldPacket.h \
-$(srcdir)/SystemConfig.h \
-$(srcdir)../game/IRCConf.h \
-$(srcdir)/Auth/AuthCrypt.cpp \
-$(srcdir)/Auth/AuthCrypt.h \
-$(srcdir)/Auth/BigNumber.cpp \
-$(srcdir)/Auth/BigNumber.h \
-$(srcdir)/Auth/Hmac.cpp \
-$(srcdir)/Auth/Hmac.h \
-$(srcdir)/Auth/Sha1.cpp \
-$(srcdir)/Auth/Sha1.h \
-$(srcdir)/Auth/md5.c \
-$(srcdir)/Auth/md5.h \
-$(srcdir)/Config/dotconfpp/dotconfpp.cpp \
-$(srcdir)/Config/dotconfpp/dotconfpp.h \
-$(srcdir)/Config/dotconfpp/mempool.cpp \
-$(srcdir)/Config/dotconfpp/mempool.h \
-$(srcdir)/Config/Config.cpp \
-$(srcdir)/Config/Config.h \
-$(srcdir)/Config/ConfigEnv.h \
-$(srcdir)/Database/DBCStores.cpp \
-$(srcdir)/Database/DBCStores.h \
-$(srcdir)/Database/DBCStructure.h \
-$(srcdir)/Database/DBCfmt.cpp \
-$(srcdir)/Database/Database.cpp \
-$(srcdir)/Database/Database.h \
-$(srcdir)/Database/DatabaseEnv.h \
-$(srcdir)/Database/DatabaseImpl.h \
-$(srcdir)/Database/DatabaseMysql.cpp \
-$(srcdir)/Database/DatabasePostgre.cpp \
-$(srcdir)/Database/DatabaseMysql.h \
-$(srcdir)/Database/DatabasePostgre.h \
-$(srcdir)/Database/DatabaseSqlite.cpp \
-$(srcdir)/Database/DatabaseSqlite.h \
-$(srcdir)/Database/Field.cpp \
-$(srcdir)/Database/Field.h \
-$(srcdir)/Database/MySQLDelayThread.h \
-$(srcdir)/Database/PGSQLDelayThread.h \
-$(srcdir)/Database/QueryResult.h \
-$(srcdir)/Database/QueryResultMysql.cpp \
-$(srcdir)/Database/QueryResultMysql.h \
-$(srcdir)/Database/QueryResultPostgre.cpp \
-$(srcdir)/Database/QueryResultPostgre.h \
-$(srcdir)/Database/QueryResultSqlite.cpp \
-$(srcdir)/Database/QueryResultSqlite.h \
-$(srcdir)/Database/SQLStorage.cpp \
-$(srcdir)/Database/SQLStorage.h \
-$(srcdir)/Database/SqlDelayThread.cpp \
-$(srcdir)/Database/SqlDelayThread.h \
-$(srcdir)/Database/SqlOperations.cpp \
-$(srcdir)/Database/SqlOperations.h \
-$(srcdir)/Database/dbcfile.cpp \
-$(srcdir)/Database/dbcfile.h \
-$(srcdir)/revision.h
-
-
-# Get HG revision
-REVISION_FILE = revision.h
-
-BUILT_SOURCES = $(REVISION_FILE)
-CLEANFILES = $(REVISION_FILE)
-
-FORCE:
-
-$(REVISION_FILE) : $(top_builddir)/src/tools/genrevision/genrevision FORCE
- $(top_builddir)/src/tools/genrevision/genrevision $(top_srcdir)
- cp $(top_builddir)/src/shared/revision.h $(top_srcdir)/src/shared
-
-## Additional files to include when running 'make dist'
-# Disabled packet logger
-EXTRA_DIST = \
- PacketLog.cpp \
- PacketLog.h
-
-# System configuration
-EXTRA_DIST += \
- SystemConfig.h
-
-# System Win32 files
-EXTRA_DIST += \
- ServiceWin32.cpp \
- ServiceWin32.h \
- WheatyExceptionReport.cpp \
- WheatyExceptionReport.h
diff --git a/src/shared/vmap/Makefile.am b/src/shared/vmap/Makefile.am
deleted file mode 100644
index 80b297f8def..00000000000
--- a/src/shared/vmap/Makefile.am
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-noinst_LIBRARIES = libvmaps.a
-
-## Preprocessor flags
-libvmaps_a_CPPFLAGS = \
-$(TRINI_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/dep/include/g3dlite
-
-libvmaps_a_SOURCES = \
-$(srcdir)/AABSPTree.h \
-$(srcdir)/BaseModel.cpp \
-$(srcdir)/BaseModel.h \
-$(srcdir)/CoordModelMapping.cpp \
-$(srcdir)/CoordModelMapping.h \
-$(srcdir)/DebugCmdLogger.cpp \
-$(srcdir)/DebugCmdLogger.h \
-$(srcdir)/IVMapManager.h \
-$(srcdir)/ManagedModelContainer.cpp \
-$(srcdir)/ManagedModelContainer.h \
-$(srcdir)/ModelContainer.cpp \
-$(srcdir)/ModelContainer.h \
-$(srcdir)/NodeValueAccess.h \
-$(srcdir)/ShortBox.h \
-$(srcdir)/ShortVector.h \
-$(srcdir)/SubModel.cpp \
-$(srcdir)/SubModel.h \
-$(srcdir)/TileAssembler.cpp \
-$(srcdir)/TileAssembler.h \
-$(srcdir)/TreeNode.cpp \
-$(srcdir)/TreeNode.h \
-$(srcdir)/VMapDefinitions.h \
-$(srcdir)/VMapFactory.cpp \
-$(srcdir)/VMapFactory.h \
-$(srcdir)/VMapManager.cpp \
-$(srcdir)/VMapManager.h \
-$(srcdir)/VMapTools.h
-
-
diff --git a/src/tools/Makefile.am b/src/tools/Makefile.am
deleted file mode 100644
index 333cba05861..00000000000
--- a/src/tools/Makefile.am
+++ /dev/null
@@ -1,2 +0,0 @@
-## Sub-directories to parse
-SUBDIRS = genrevision
diff --git a/src/tools/genrevision/Makefile.am b/src/tools/genrevision/Makefile.am
deleted file mode 100644
index faf5451f652..00000000000
--- a/src/tools/genrevision/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-## CPP flags for includes, defines, etc.
-AM_CPPFLAGS = -I$(srcdir)
-
-## Build world list daemon as standalone program
-bin_PROGRAMS = genrevision
-genrevision_SOURCES = \
- genrevision.cpp
-
-## Link world daemon against the shared library
-genrevision_LDADD =
-genrevision_LDFLAGS = -L$(libdir)
-
-## Additional files to include when running 'make dist'
-# Include world daemon configuration
-#EXTRA_DIST =
-
-## Additional files to install
diff --git a/src/trinitycore/Makefile.am b/src/trinitycore/Makefile.am
deleted file mode 100644
index ad1b78d9033..00000000000
--- a/src/trinitycore/Makefile.am
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Build world list daemon as standalone program
-bin_PROGRAMS = trinity-core
-
-## Preprocessor flags
-trinity_core_CPPFLAGS = \
-$(MYSQL_INCLUDES) \
-$(POSTGRE_INCLUDES) \
-$(TRINI_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/src/shared \
--I$(top_srcdir)/src/framework \
--I$(top_srcdir)/src/game \
--D_TRINITY_CORE_CONFIG='"$(sysconfdir)/trinitycore.conf"'
-
-## Sources
-trinity_core_SOURCES = \
-$(srcdir)/CliRunnable.cpp \
-$(srcdir)/CliRunnable.h \
-$(srcdir)/Main.cpp \
-$(srcdir)/Master.cpp \
-$(srcdir)/Master.h \
-$(srcdir)/RASocket.cpp \
-$(srcdir)/RASocket.h \
-$(srcdir)/WorldRunnable.cpp \
-$(srcdir)/WorldRunnable.h
-
-## Convenience libs to add
-trinity_core_LDADD = \
-$(top_builddir)/src/game/libgame.a \
-$(top_builddir)/src/shared/libshared.a \
-$(top_builddir)/src/shared/vmap/libvmaps.a \
-$(top_builddir)/src/framework/libmangosframework.a \
-$(top_builddir)/dep/src/sockets/libmangossockets.a \
-$(top_builddir)/dep/src/zthread/libZThread.la \
-$(top_builddir)/dep/src/g3dlite/libg3dlite.a
-
-if USE_TSCRIPTS
-trinity_core_LDADD += $(top_builddir)/src/bindings/scripts/libtrinityscript.la
-else
-trinity_core_LDADD += $(top_builddir)/src/bindings/interface/libtrinityscript.la
-endif
-
-## Linker flags
-trinity_core_LDFLAGS = $(MYSQL_LIBS) $(POSTGRE_LIBS) $(ZLIB) $(COMPATLIB) $(SSLLIB) $(TRINI_LIBS) -export-dynamic
-
-## Additional files to install
-sysconf_DATA = \
- trinitycore.conf.dist
-
-EXTRA_DIST = \
- trinitycore.conf.dist
-
-## Prevend overwrite of the config file, if its already installed
-install-data-hook:
- @list='$(sysconf_DATA)'; for p in $$list; do \
- dest=`echo $$p | sed -e s/.dist//`; \
- if test -f $(DESTDIR)$(sysconfdir)/$$dest; then \
- echo "$@ will not overwrite existing $(DESTDIR)$(sysconfdir)/$$dest"; \
- else \
- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$dest"; \
- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$dest; \
- fi; \
- done
-
-
diff --git a/src/trinityrealm/Makefile.am b/src/trinityrealm/Makefile.am
deleted file mode 100644
index 9baeed6c2b1..00000000000
--- a/src/trinityrealm/Makefile.am
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
-#
-# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-## Process this file with automake to produce Makefile.in
-
-## Build realm list daemon as standalone program
-bin_PROGRAMS = trinity-realm
-
-## Preprocessor flags
-trinity_realm_CPPFLAGS = \
-$(MYSQL_INCLUDES) \
-$(POSTGRE_INCLUDES) \
-$(TRINI_INCLUDES) \
--I$(top_srcdir)/dep/include \
--I$(top_srcdir)/src/framework \
--I$(top_srcdir)/src/shared \
--D_TRINITY_REALM_CONFIG='"$(sysconfdir)/trinityrealm.conf"'
-
-## Sources
-trinity_realm_SOURCES = \
-$(srcdir)/AuthCodes.h \
-$(srcdir)/AuthSocket.cpp \
-$(srcdir)/AuthSocket.h \
-$(srcdir)/Main.cpp \
-$(srcdir)/RealmList.cpp \
-$(srcdir)/RealmList.h
-
-## Convenience libs to add
-trinity_realm_LDADD = \
-$(top_builddir)/src/shared/libshared.a \
-$(top_builddir)/src/framework/libmangosframework.a \
-$(top_builddir)/dep/src/sockets/libmangossockets.a \
-$(top_builddir)/dep/src/zthread/libZThread.la
-
-## Linker flags
-trinity_realm_LDFLAGS = $(MYSQL_LIBS) $(POSTGRE_LIBS) $(ZLIB) $(COMPATLIB) $(SSLLIB) $(TRINI_LIBS)
-
-## Additional files to install
-sysconf_DATA = \
- trinityrealm.conf.dist
-
-## Prevend overwrite of the config file, if its already installed
-install-data-hook:
- @list='$(sysconf_DATA)'; for p in $$list; do \
- dest=`echo $$p | sed -e s/.dist//`; \
- if test -f $(DESTDIR)$(sysconfdir)/$$dest; then \
- echo "$@ will not overwrite existing $(DESTDIR)$(sysconfdir)/$$dest"; \
- else \
- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$dest"; \
- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$dest; \
- fi; \
- done
-
-## Additional files to include when running 'make dist'
-EXTRA_DIST = trinityrealm.conf.dist
-
-