mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
Implement the use of the new vmap3-format by Lynx3d (mad props to you for this, and thanks for the talks earlier) + reduced Vmap size to less than one third, and improve precision + indoor/outdoor check which allows automatic unmounting of players + additional area information from WMOAreaTable.dbc, removed existing "hacks" + WMO liquid information for swimming and fishing correctly in buildings/cities/caves/instances (lava and slime WILL hurt from now on!) - buildfiles for windows are not properly done, and will need to be sorted out NOTE: Do NOT annoy Lynx3d about this, any issues with this "port" is entirely our fault ! THIS REVISION IS CONSIDERED UNSTABLE AND CONTAINS WORK IN PROGRESS - USE AT YOUR OWN RISK! --HG-- branch : trunk
27 lines
523 B
Makefile
27 lines
523 B
Makefile
# minimum required automake 1.6
|
|
AUTOMAKE_OPTIONS = 1.6
|
|
|
|
# any directories which should be built and installed.
|
|
SUBDIRS = libmpq bindings doc
|
|
|
|
# the directories which are part of the distribution.
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
|
|
|
# libmpq runtime configuration script.
|
|
bin_SCRIPTS = libmpq-config
|
|
|
|
# pkg-config installation directory.
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libmpq.pc
|
|
|
|
# extra stuff.
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
COPYING \
|
|
FAQ \
|
|
INSTALL \
|
|
NEWS \
|
|
README \
|
|
THANKS \
|
|
TODO
|