root/trunk/src/shared/Makefile.am @ 6

Revision 6, 3.7 kB (checked in by yumileroy, 17 years ago)

[svn] * Added ACE for Linux and Windows (Thanks Derex for Linux part and partial Windows part)
* Updated to 6721 and 676
* Fixed TrinityScript? logo
* Version updated to 0.2.6721.676

Original author: Neo2003
Date: 2008-10-04 06:17:19-05:00

Line 
1# Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17## Process this file with automake to produce Makefile.in
18
19## TODO move vmaps in src dir instead of src/shared
20
21## Sub-directories to parse
22SUBDIRS = vmap
23
24## Build MaNGOS shared library and its parts as convenience library.
25#  All libraries will be convenience libraries. Might be changed to shared
26#  later.
27noinst_LIBRARIES = libshared.a
28
29libshared_a_CPPFLAGS = \
30$(MYSQL_INCLUDES) \
31$(POSTGRE_INCLUDES) \
32-I$(top_srcdir)/dep/include \
33-I$(top_srcdir)/dep/ACE_wrappers \
34-I$(top_builddir)/dep/ACE_wrappers \
35-I$(top_srcdir)/src/framework
36
37#  libmangosshared library will later be reused by ...
38libshared_a_SOURCES = \
39$(srcdir)/Base.cpp \
40$(srcdir)/Base.h \
41$(srcdir)/ByteBuffer.h \
42$(srcdir)/Common.cpp \
43$(srcdir)/Common.h \
44$(srcdir)/Errors.h \
45$(srcdir)/Log.cpp \
46$(srcdir)/Log.h \
47$(srcdir)/Mthread.cpp \
48$(srcdir)/Mthread.h \
49$(srcdir)/ProgressBar.cpp \
50$(srcdir)/ProgressBar.h \
51$(srcdir)/Timer.h \
52$(srcdir)/Util.cpp \
53$(srcdir)/Util.h \
54$(srcdir)/WorldPacket.h \
55$(srcdir)/SystemConfig.h \
56$(srcdir)/Auth/AuthCrypt.cpp \
57$(srcdir)/Auth/AuthCrypt.h \
58$(srcdir)/Auth/BigNumber.cpp \
59$(srcdir)/Auth/BigNumber.h \
60$(srcdir)/Auth/Hmac.cpp \
61$(srcdir)/Auth/Hmac.h \
62$(srcdir)/Auth/Sha1.cpp \
63$(srcdir)/Auth/Sha1.h \
64$(srcdir)/Auth/md5.c \
65$(srcdir)/Auth/md5.h \
66$(srcdir)/Config/dotconfpp/dotconfpp.cpp \
67$(srcdir)/Config/dotconfpp/dotconfpp.h \
68$(srcdir)/Config/dotconfpp/mempool.cpp \
69$(srcdir)/Config/dotconfpp/mempool.h \
70$(srcdir)/Config/Config.cpp \
71$(srcdir)/Config/Config.h \
72$(srcdir)/Config/ConfigEnv.h \
73$(srcdir)/Database/DBCStores.cpp \
74$(srcdir)/Database/DBCStores.h \
75$(srcdir)/Database/DBCStructure.h \
76$(srcdir)/Database/DBCfmt.cpp \
77$(srcdir)/Database/Database.cpp \
78$(srcdir)/Database/Database.h \
79$(srcdir)/Database/DatabaseEnv.h \
80$(srcdir)/Database/DatabaseImpl.h \
81$(srcdir)/Database/DatabaseMysql.cpp \
82$(srcdir)/Database/DatabasePostgre.cpp \
83$(srcdir)/Database/DatabaseMysql.h \
84$(srcdir)/Database/DatabasePostgre.h \
85$(srcdir)/Database/DatabaseSqlite.cpp \
86$(srcdir)/Database/DatabaseSqlite.h \
87$(srcdir)/Database/Field.cpp \
88$(srcdir)/Database/Field.h \
89$(srcdir)/Database/MySQLDelayThread.h \
90$(srcdir)/Database/PGSQLDelayThread.h \
91$(srcdir)/Database/QueryResult.h \
92$(srcdir)/Database/QueryResultMysql.cpp \
93$(srcdir)/Database/QueryResultMysql.h \
94$(srcdir)/Database/QueryResultPostgre.cpp \
95$(srcdir)/Database/QueryResultPostgre.h \
96$(srcdir)/Database/QueryResultSqlite.cpp \
97$(srcdir)/Database/QueryResultSqlite.h \
98$(srcdir)/Database/SQLStorage.cpp \
99$(srcdir)/Database/SQLStorage.h \
100$(srcdir)/Database/SqlDelayThread.cpp \
101$(srcdir)/Database/SqlDelayThread.h \
102$(srcdir)/Database/SqlOperations.cpp \
103$(srcdir)/Database/SqlOperations.h \
104$(srcdir)/Database/dbcfile.cpp \
105$(srcdir)/Database/dbcfile.h
106
107## Additional files to include when running 'make dist'
108#  Disabled packet logger
109EXTRA_DIST = \
110        PacketLog.cpp \
111        PacketLog.h
112
113# System Win32 files
114EXTRA_DIST += \
115        ServiceWin32.cpp \
116        ServiceWin32.h \
117        WheatyExceptionReport.cpp \
118        WheatyExceptionReport.h
119
Note: See TracBrowser for help on using the browser.