server/dep/libmpq/libmpq/Makefile.am
Lynx3d f3f8e5f812 [10162] Added libmpq to dep/
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.
2010-07-08 23:05:15 +02:00

23 lines
571 B
Makefile

# minimum required automake 1.6
AUTOMAKE_OPTIONS = 1.6
# library information and headers which should not be installed.
lib_LTLIBRARIES = libmpq.la
noinst_HEADERS = common.h explode.h extract.h huffman.h mpq-internal.h wave.h
# directory where the include files will be installed.
libmpq_includedir = $(includedir)/libmpq
# header files to install.
libmpq_include_HEADERS = mpq.h
libmpq_la_SOURCES = $(GENERAL_SRCS)
libmpq_la_LDFLAGS = -release $(PACKAGE_VERSION)
GENERAL_SRCS = \
common.c \
huffman.c \
extract.c \
explode.c \
mpq.c \
wave.c