mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
24 lines
571 B
Makefile
24 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
|