2f64b991b6
This change improves the pkg-config support to only generate/install a .pc file if pkg-config is found, assuming it is part of the build toolchain. Note: The minimal version set for pkg-config is 0.25, because this is the oldest version I am able to test at the moment.
17 lines
214 B
Makefile
17 lines
214 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
LICENSE \
|
|
README.markdown \
|
|
THANKS
|
|
|
|
SUBDIRS = \
|
|
src \
|
|
test
|
|
|
|
if HAVE_PKG_CONFIG
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = @PACKAGE_NAME@.pc
|
|
endif
|