summaryrefslogtreecommitdiffstats
path: root/path_utils
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-01-22 14:07:51 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-02-03 10:35:16 -0500
commit969886accce03a24b906731643303113b2404e1c (patch)
tree4d31662ed4470691ed73b5e81b54cb20de7e629b /path_utils
parent1e6a68ff11e21d0ff780277d6fd112da300e041d (diff)
downloadding-libs-969886accce03a24b906731643303113b2404e1c.tar.gz
ding-libs-969886accce03a24b906731643303113b2404e1c.tar.xz
ding-libs-969886accce03a24b906731643303113b2404e1c.zip
Split off libpath_utils into a shared library
Diffstat (limited to 'path_utils')
-rw-r--r--path_utils/Makefile.am16
-rw-r--r--path_utils/README1
-rw-r--r--path_utils/configure.ac2
3 files changed, 11 insertions, 8 deletions
diff --git a/path_utils/Makefile.am b/path_utils/Makefile.am
index b738c3e..8539ffd 100644
--- a/path_utils/Makefile.am
+++ b/path_utils/Makefile.am
@@ -8,13 +8,15 @@ endif
ACLOCAL_AMFLAGS = -I m4
pkgconfigdir = $(libdir)/pkgconfig
-dist_noinst_DATA = \
- path_utils.pc \
- m4
+dist_pkgconfig_DATA = path_utils.pc
-noinst_LTLIBRARIES = libpath_utils.la
-libpath_utils_la_SOURCES = \
- path_utils.c \
- path_utils.h
+dist_include_HEADERS = path_utils.h
+
+dist_noinst_DATA = m4
+
+lib_LTLIBRARIES = libpath_utils.la
+libpath_utils_la_SOURCES = path_utils.c
+libpath_utils_la_LDFLAGS = \
+ -version-info 1:0:0
tests: all $(check_PROGRAMS)
diff --git a/path_utils/README b/path_utils/README
new file mode 100644
index 0000000..2ccc3dc
--- /dev/null
+++ b/path_utils/README
@@ -0,0 +1 @@
+Documentation for libpath_utils can be found in path_utils.h
diff --git a/path_utils/configure.ac b/path_utils/configure.ac
index 9207a07..87dd615 100644
--- a/path_utils/configure.ac
+++ b/path_utils/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([path_utils], [0.1], [jdennis@redhat.com])
+AC_INIT([path_utils], [0.2.0], [jdennis@redhat.com])
AC_CONFIG_SRCDIR([path_utils.c])
AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])