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

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

[svn] * Adjusted all Makefile headers; Updated to GPL v3

Original author: Coldblooded
Date: 2008-10-06 15:30:26-05:00

Line 
1# Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
2#
3# Thanks to the original authors: MaNGOS <http://www.mangosproject.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 3 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-I$(top_srcdir)/dep/include \
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.