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

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

[svn] Fix build in Linux. Patch provided by SyRiOCoP.

Original author: megamage
Date: 2008-11-08 17:55:48-06:00

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