mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
This is from official repo (SVN rev. 300) Additionally includes free implementation of stdint.h and dirent.h for VC++, aswell as Visual Studio project files. Special thanks to faramir118 for Windows support.
26 lines
523 B
Makefile
26 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
|