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

Revision 8, 3.6 kB (checked in by yumileroy, 17 years ago)

[svn] * Auto detect if ACE is already installed and use it.

Original author: derex_tri
Date: 2008-10-04 10:45:45-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)/src/framework
34
35#  libmangosshared library will later be reused by ...
36libshared_a_SOURCES = \
37$(srcdir)/Base.cpp \
38$(srcdir)/Base.h \
39$(srcdir)/ByteBuffer.h \
40$(srcdir)/Common.cpp \
41$(srcdir)/Common.h \
42$(srcdir)/Errors.h \
43$(srcdir)/Log.cpp \
44$(srcdir)/Log.h \
45$(srcdir)/Mthread.cpp \
46$(srcdir)/Mthread.h \
47$(srcdir)/ProgressBar.cpp \
48$(srcdir)/ProgressBar.h \
49$(srcdir)/Timer.h \
50$(srcdir)/Util.cpp \
51$(srcdir)/Util.h \
52$(srcdir)/WorldPacket.h \
53$(srcdir)/SystemConfig.h \
54$(srcdir)/Auth/AuthCrypt.cpp \
55$(srcdir)/Auth/AuthCrypt.h \
56$(srcdir)/Auth/BigNumber.cpp \
57$(srcdir)/Auth/BigNumber.h \
58$(srcdir)/Auth/Hmac.cpp \
59$(srcdir)/Auth/Hmac.h \
60$(srcdir)/Auth/Sha1.cpp \
61$(srcdir)/Auth/Sha1.h \
62$(srcdir)/Auth/md5.c \
63$(srcdir)/Auth/md5.h \
64$(srcdir)/Config/dotconfpp/dotconfpp.cpp \
65$(srcdir)/Config/dotconfpp/dotconfpp.h \
66$(srcdir)/Config/dotconfpp/mempool.cpp \
67$(srcdir)/Config/dotconfpp/mempool.h \
68$(srcdir)/Config/Config.cpp \
69$(srcdir)/Config/Config.h \
70$(srcdir)/Config/ConfigEnv.h \
71$(srcdir)/Database/DBCStores.cpp \
72$(srcdir)/Database/DBCStores.h \
73$(srcdir)/Database/DBCStructure.h \
74$(srcdir)/Database/DBCfmt.cpp \
75$(srcdir)/Database/Database.cpp \
76$(srcdir)/Database/Database.h \
77$(srcdir)/Database/DatabaseEnv.h \
78$(srcdir)/Database/DatabaseImpl.h \
79$(srcdir)/Database/DatabaseMysql.cpp \
80$(srcdir)/Database/DatabasePostgre.cpp \
81$(srcdir)/Database/DatabaseMysql.h \
82$(srcdir)/Database/DatabasePostgre.h \
83$(srcdir)/Database/DatabaseSqlite.cpp \
84$(srcdir)/Database/DatabaseSqlite.h \
85$(srcdir)/Database/Field.cpp \
86$(srcdir)/Database/Field.h \
87$(srcdir)/Database/MySQLDelayThread.h \
88$(srcdir)/Database/PGSQLDelayThread.h \
89$(srcdir)/Database/QueryResult.h \
90$(srcdir)/Database/QueryResultMysql.cpp \
91$(srcdir)/Database/QueryResultMysql.h \
92$(srcdir)/Database/QueryResultPostgre.cpp \
93$(srcdir)/Database/QueryResultPostgre.h \
94$(srcdir)/Database/QueryResultSqlite.cpp \
95$(srcdir)/Database/QueryResultSqlite.h \
96$(srcdir)/Database/SQLStorage.cpp \
97$(srcdir)/Database/SQLStorage.h \
98$(srcdir)/Database/SqlDelayThread.cpp \
99$(srcdir)/Database/SqlDelayThread.h \
100$(srcdir)/Database/SqlOperations.cpp \
101$(srcdir)/Database/SqlOperations.h \
102$(srcdir)/Database/dbcfile.cpp \
103$(srcdir)/Database/dbcfile.h
104
105## Additional files to include when running 'make dist'
106#  Disabled packet logger
107EXTRA_DIST = \
108        PacketLog.cpp \
109        PacketLog.h
110
111# System Win32 files
112EXTRA_DIST += \
113        ServiceWin32.cpp \
114        ServiceWin32.h \
115        WheatyExceptionReport.cpp \
116        WheatyExceptionReport.h
117
Note: See TracBrowser for help on using the browser.