From: Sebastian Harl Date: Sun, 15 Dec 2013 08:46:01 +0000 (+0100) Subject: doc/Makefile: Use SUFFIXES rather than GNU-specific %-style rules. X-Git-Tag: sysdb-0.1.0~300^2~6 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=0e7ce7bbe74934ca6ff1457ac5e3e4f138dc0ad6 doc/Makefile: Use SUFFIXES rather than GNU-specific %-style rules. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 35c3a4a..a89ea25 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,3 +1,5 @@ +SUFFIXES = .1 .5 .1.txt .5.txt + EXTRA_DIST = \ sysdbd.1.txt \ sysdbd.conf.5.txt @@ -13,13 +15,13 @@ sysdbd.1: sysdbd.1.txt ../version sysdbd.conf.5: sysdbd.conf.5.txt ../version -%.1: %.1.txt +.1.txt.1: @A2X@ -d manpage -f manpage \ -apackage_version=$(PACKAGE_VERSION) \ -abuild_date="$$( date --utc '+%F' )" \ $< -%.5: %.5.txt +.5.txt.5: @A2X@ -d manpage -f manpage \ -apackage_version=$(PACKAGE_VERSION) \ -abuild_date="$$( date --utc '+%F' )" \