hydra/doc/manual/Makefile.am

35 lines
990 B
Makefile
Raw Normal View History

2013-07-19 13:01:18 +00:00
DOCBOOK_FILES = installation.xml introduction.xml manual.xml projects.xml hacking.xml
2010-09-30 14:29:15 +00:00
EXTRA_DIST = $(DOCBOOK_FILES)
2010-09-30 14:29:15 +00:00
xsltproc_opts = \
--param html.stylesheet \'style.css\' \
2012-05-11 22:22:46 +00:00
--param callout.graphics.extension \'.gif\' \
--param section.autolabel 1 \
--param section.label.includes.component.label 1
# Include the manual in the tarball.
dist_html_DATA = manual.html style.css
2011-10-12 21:14:36 +00:00
# Embed Docbook's callout images in the distribution.
EXTRA_DIST += images
2011-10-12 21:14:36 +00:00
manual.html: $(DOCBOOK_FILES)
$(XSLTPROC) $(xsltproc_opts) --nonet --xinclude \
--output manual.html \
$(docbookxsl)/xhtml/docbook.xsl manual.xml
2010-09-30 14:29:15 +00:00
images:
$(MKDIR_P) images/callouts
cp $(docbookxsl)/images/callouts/*.gif images/callouts
chmod +wx images images/callouts
install-data-hook: images
$(INSTALL) -d $(DESTDIR)$(htmldir)/images/callouts
$(INSTALL_DATA) images/callouts/* $(DESTDIR)$(htmldir)/images/callouts
2016-10-10 13:52:11 +00:00
ln -sfn manual.html $(DESTDIR)$(htmldir)/index.html
distclean-hook:
-rm -rf images