Documentation Tools
Changeset 207
- Timestamp:
- 08/26/07 14:22:28 (5 years ago)
- File:
-
- 1 edited
-
trunk/Mk/docbook.mk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mk/docbook.mk
r205 r207 3 3 # those articles to various formats (namely XHTML and PDF). 4 4 5 # Paths 6 # These are relative to the directory which includes this Makefile. 7 # DOCTOOLS_BASE provides a central point to set both the doctools 8 # source and also the output directory, or DOCTOOLSDIR and DOCTOOLS_OUTPUT 9 # may be set independantly, so that they may point to different locations. 10 DOCTOOLS_BASE ?= .. 11 DOCTOOLS_OUTPUT ?= $(DOCTOOLS_BASE) 12 DOCTOOLSDIR ?= $(DOCTOOLS_BASE)/doctools 13 XHTMLDIR ?= $(DOCTOOLS_OUTPUT)/xhtml 14 PDFDIR ?= $(DOCTOOLS_OUTPUT)/pdf 15 5 16 # XSLT 6 17 XSLT = xsltproc --xinclude 7 XHTMLSTYLE ?= ../doctools/xsl/docbook-chunked.xsl8 XHTMLSTYLE_SINGLE ?= ../doctools/xsl/docbook-single.xsl9 TEXMLSTYLE ?= ../doctools/xsl/texml.xsl18 XHTMLSTYLE ?= $(DOCTOOLSDIR)/xsl/docbook-chunked.xsl 19 XHTMLSTYLE_SINGLE ?= $(DOCTOOLSDIR)/xsl/docbook-single.xsl 20 TEXMLSTYLE ?= $(DOCTOOLSDIR)/xsl/texml.xsl 10 21 11 22 # PDF via TeXML … … 15 26 SOURCE_TEXML = $(NAME)-texml.xml 16 27 SOURCE_TEX = $(NAME).tex 17 TEXDIR ?= ../doctools/tex28 TEXDIR ?= $(DOCTOOLSDIR)/tex 18 29 19 XHTMLDIR = ../xhtml 20 PDFDIR = ../pdf 21 RESOURCES ?= ../doctools/resources/*.css ../doctools/resources/*.png 30 RESOURCES ?= $(DOCTOOLSDIR)/resources/*.css $(DOCTOOLSDIR)/resources/*.png 22 31 # TODO rename CSSFILE and TEXFILE to wpi.* 23 32 CSSFILE ?= docs.css
Note: See TracChangeset
for help on using the changeset viewer.