Update of /cvsroot/dhcp-agent/dhcp-agent/doc
In directory sc8-pr-cvs1:/tmp/cvs-serv27139/doc
Modified Files:
Makefile.am
Log Message:
added HTML documentation option
Index: Makefile.am
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/doc/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile.am 18 May 2003 03:26:08 -0000 1.1
--- Makefile.am 20 May 2003 00:32:30 -0000 1.2
***************
*** 6,7 ****
--- 6,18 ----
info_TEXINFOS = dhcp-agent.texi
dhcp_agent_TEXINFOS = dhcp-client.texi dhcp-relay.texi dhcp-server.texi dhcp-server.texi introduction.texi
+
+ if HTMLDOC
+
+ htmldir = $(prefix)/${dhcpdocdir}
+
+ html_DATA = index.html $(shell ls dhcp-agent_*.html 2>/dev/null)
+
+ index.html: dhcp-agent.texi $(dhcp_agent_TEXINFOS)
+ texi2html -toc_file index.html -split chapter dhcp-agent.texi
+
+ endif
|