From cf66dbeb8820ef935045813598aa5a48be00526a Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Sat, 28 Apr 2012 18:47:43 +0200 Subject: Preparations for 0.2.1 Bump software and library interface versions, and start adding NEWS entries. Signed-off-by: Gergely Nagy --- lib/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Makefile.am') diff --git a/lib/Makefile.am b/lib/Makefile.am index 169b0b2..b113810 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,6 @@ -LUL_CURRENT = 1 +LUL_CURRENT = 2 LUL_REVISION = 0 -LUL_AGE = 0 +LUL_AGE = 1 lib_LTLIBRARIES = libumberlog.la libumberlog_la_LDFLAGS = -Wl,--version-script,${srcdir}/libumberlog.ld \ -- cgit From 7dc0d11639d5f9fd2c4d0e01ab12813a5898f596 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Sun, 29 Apr 2012 10:34:04 +0200 Subject: Generate the manual page if rst2man is present If rst2man is present at configure time, generate the manual page with it, which is to be included in the dist tarball too. Signed-off-by: Gergely Nagy --- lib/Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/Makefile.am') diff --git a/lib/Makefile.am b/lib/Makefile.am index b113810..b6b60b3 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -15,3 +15,12 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libumberlog.pc EXTRA_DIST = umberlog.rst libumberlog.ld + +if ENABLE_MANS +man3_MANS = umberlog.3 +CLEANFILES = umberlog.3 +EXTRA_DIST += umberlog.3 + +umberlog.3: umberlog.rst + $(AM_V_GEN) $(RST2MAN) $< $@ +endif -- cgit