1234567891011121314151617181920212223242526 |
- #
- # Copyright (c) 2006 Thorsten Kukuk <kukuk@thkukuk.de>
- #
- README: $(XMLS)
- README: README.xml
- $(XSLTPROC) --path $(srcdir) --xinclude --stringparam generate.toc "none" --stringparam vendordir '<vendordir>' --nonet $(top_srcdir)/doc/custom-html.xsl $< | $(BROWSER) > $(srcdir)/$@
- %.1: %.1.xml
- $(XMLLINT) --nonet --xinclude --postvalid --noout $<
- $(XSLTPROC) -o $(srcdir)/$@ --path $(srcdir) --xinclude --stringparam vendordir '<vendordir>' --nonet $(top_srcdir)/doc/custom-man.xsl $<
- %.3: %.3.xml
- $(XMLLINT) --nonet --xinclude --postvalid --noout $<
- $(XSLTPROC) -o $(srcdir)/$@ --path $(srcdir) --xinclude --stringparam vendordir '<vendordir>' --nonet $(top_srcdir)/doc/custom-man.xsl $<
- %.5: %.5.xml
- $(XMLLINT) --nonet --xinclude --postvalid --noout $<
- $(XSLTPROC) -o $(srcdir)/$@ --path $(srcdir) --xinclude --stringparam vendordir '<vendordir>' --nonet $(top_srcdir)/doc/custom-man.xsl $<
- %.8: %.8.xml
- $(XMLLINT) --nonet --xinclude --postvalid --noout $<
- $(XSLTPROC) -o $(srcdir)/$@ --path $(srcdir) --xinclude --stringparam vendordir '<vendordir>' --nonet $(top_srcdir)/doc/custom-man.xsl $<
- #CLEANFILES += $(man_MANS) README
|