Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/libpainter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac7
2 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index eb804d7..9fcdc23 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -9,5 +9,6 @@ endif
SUBDIRS = \
src \
include \
+ pkgconfig \
$(EXTRA_DIRS)
diff --git a/configure.ac b/configure.ac
index e93643d..3336c1a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,11 +22,16 @@ if test "x${prefix}" = "xNONE" ; then
sysconfdir="/etc";
fi
+pkgconfigdir=${libdir}/pkgconfig
+AC_SUBST(pkgconfigdir)
+
AC_CONFIG_FILES([Makefile
src/Makefile
include/Makefile
+ pkgconfig/Makefile
tests/Makefile
])
-AC_OUTPUT
+AC_OUTPUT([pkgconfig/libpainter.pc
+])