summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 285b379)
raw | patch | inline | side by side (parent: 285b379)
author | Sebastian Harl <sh@tokkee.org> | |
Tue, 29 Apr 2014 21:12:50 +0000 (23:12 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Tue, 29 Apr 2014 21:12:50 +0000 (23:12 +0200) |
For now, build HTML variants of the manpages but without any index file or
similar.
similar.
doc/Makefile.am | patch | blob | history |
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 76d488fb455960035131a9539c70063c40d12a17..fb6c967feb0dc82b2889c9de12cadc895f83d9de 100644 (file)
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
-SUFFIXES = .1 .5 .1.txt .5.txt
+SUFFIXES = .1 .5 .1.html .5.html .1.txt .5.txt
EXTRA_DIST = \
sysdb.1.txt \
sysdbd.1 \
sysdbd.conf.5
+html_DATA = \
+ sysdb.1.html \
+ sysdbd.1.html \
+ sysdbd.conf.5.html
+
ADOC_ATTRS = -apackage_version=$(PACKAGE_VERSION) \
-abuild_date="$$( date --utc '+%F' )" \
-alocalstatedir=$(localstatedir)
sysdb.1: sysdb.1.txt ../version
-
sysdbd.1: sysdbd.1.txt ../version
-
sysdbd.conf.5: sysdbd.conf.5.txt ../version
+sysdb.1.html: sysdb.1.txt ../version
+sysdbd.1.html: sysdbd.1.txt ../version
+sysdbd.conf.5.html: sysdbd.conf.5.txt ../version
+
.1.txt.1:
@A2X@ -d manpage -f manpage $(ADOC_ATTRS) $<
+.1.txt.1.html:
+ @A2X@ -d manpage -f xhtml $(ADOC_ATTRS) $<
.5.txt.5:
@A2X@ -d manpage -f manpage $(ADOC_ATTRS) $<
+.5.txt.5.html:
+ @A2X@ -d manpage -f xhtml $(ADOC_ATTRS) $<