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 | noinst_LIBRARIES = libvmaps.a |
---|
22 | |
---|
23 | ## Preprocessor flags |
---|
24 | libvmaps_a_CPPFLAGS = \ |
---|
25 | $(TRINI_INCLUDES) \ |
---|
26 | -I$(top_srcdir)/dep/include \ |
---|
27 | -I$(top_srcdir)/dep/include/g3dlite |
---|
28 | |
---|
29 | libvmaps_a_SOURCES = \ |
---|
30 | $(srcdir)/AABSPTree.h \ |
---|
31 | $(srcdir)/BaseModel.cpp \ |
---|
32 | $(srcdir)/BaseModel.h \ |
---|
33 | $(srcdir)/CoordModelMapping.cpp \ |
---|
34 | $(srcdir)/CoordModelMapping.h \ |
---|
35 | $(srcdir)/DebugCmdLogger.cpp \ |
---|
36 | $(srcdir)/DebugCmdLogger.h \ |
---|
37 | $(srcdir)/IVMapManager.h \ |
---|
38 | $(srcdir)/ManagedModelContainer.cpp \ |
---|
39 | $(srcdir)/ManagedModelContainer.h \ |
---|
40 | $(srcdir)/ModelContainer.cpp \ |
---|
41 | $(srcdir)/ModelContainer.h \ |
---|
42 | $(srcdir)/NodeValueAccess.h \ |
---|
43 | $(srcdir)/ShortBox.h \ |
---|
44 | $(srcdir)/ShortVector.h \ |
---|
45 | $(srcdir)/SubModel.cpp \ |
---|
46 | $(srcdir)/SubModel.h \ |
---|
47 | $(srcdir)/TileAssembler.cpp \ |
---|
48 | $(srcdir)/TileAssembler.h \ |
---|
49 | $(srcdir)/TreeNode.cpp \ |
---|
50 | $(srcdir)/TreeNode.h \ |
---|
51 | $(srcdir)/VMapDefinitions.h \ |
---|
52 | $(srcdir)/VMapFactory.cpp \ |
---|
53 | $(srcdir)/VMapFactory.h \ |
---|
54 | $(srcdir)/VMapManager.cpp \ |
---|
55 | $(srcdir)/VMapManager.h \ |
---|
56 | $(srcdir)/VMapTools.h |
---|
57 | |
---|
58 | |
---|