blob: 0a9b54c252693171d461e6f4d2cb7a6563e7bdb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 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
|