mirror of
https://github.com/mangosfour/server.git
synced 2025-12-27 19:37:04 +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.
23 lines
571 B
Makefile
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
|