Code

doc: Build and install HTML documentation as well.
authorSebastian Harl <sh@tokkee.org>
Tue, 29 Apr 2014 21:12:50 +0000 (23:12 +0200)
committerSebastian 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.

doc/Makefile.am

index 76d488fb455960035131a9539c70063c40d12a17..fb6c967feb0dc82b2889c9de12cadc895f83d9de 100644 (file)
@@ -1,4 +1,4 @@
-SUFFIXES = .1 .5 .1.txt .5.txt
+SUFFIXES = .1 .5 .1.html .5.html .1.txt .5.txt
 
 EXTRA_DIST = \
                sysdb.1.txt \
@@ -14,19 +14,30 @@ man_MANS = \
                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) $<