Changeset 2304
- Timestamp:
- 01/10/2008 00:27:06 (3 years ago)
- Location:
- box/trunk/documentation
- Files:
-
- 1 edited
- 1 moved
-
Makefile (modified) (4 diffs)
-
bb-man.xsl.tmpl (moved) (moved from box/trunk/documentation/bb-man.xsl) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/documentation/Makefile
r2153 r2304 9 9 HTMLPREFIX=box-html 10 10 VPATH= adminguide 11 # If your OS declares a system make variable, add a .elif statement here 12 # with the path to the locally-installed DocBook stylesheet 13 .if .FreeBSD 14 # Requires textproc/docbook-xsl port installed 15 DOCBOOK=file:///usr/local/share/xsl/docbook/manpages/docbook.xsl 16 .else 17 DOCBOOK=http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl 18 .endif 11 19 .SUFFIXES: .html .xml .1 .5 .8 12 20 … … 32 40 perl ./generate_except_xml.pl 33 41 34 manpages: man-dirs man-nroff man-html 42 manpages: $(MANXSL) man-dirs man-nroff man-html 43 44 $(MANXSL): $(MANXSL).tmpl 45 @sed -e 's,%%DOCBOOK%%,$(DOCBOOK),' $(MANXSL).tmpl > $(MANXSL) 35 46 36 47 man-dirs: man-pages/.there $(HTMLPREFIX)/man-html/.there … … 42 53 if [ ! -d man-pages ]; then mkdir man-pages; touch man-pages/.there; fi 43 54 44 man-nroff: bbackupquery.8 bbackupctl.8 bbstoreaccounts.8 bbstored-config.8 \ 45 raidfile-config.8 bbstored-certs.8 55 man-nroff: bbackupd.8 bbackupd-config.8 bbackupctl.8 bbackupquery.8 \ 56 bbstored.8 bbstored-config.8 bbstoreaccounts.8 bbstored-certs.8 \ 57 raidfile-config.8 \ 58 bbackupd.conf.5 bbstored.conf.5 raidfile.conf.5 46 59 47 man-html: bbackupquery.html bbackupctl.html bbstoreaccounts.html \ 48 bbstored-config.html raidfile-config.html bbstored-certs.html 60 man-html: bbackupd.html bbackupd-config.html bbackupctl.html bbackupquery.html \ 61 bbstored.html bbstored-config.html bbstoreaccounts.html bbstored-certs.html \ 62 raidfile-config.html \ 63 bbackupd.conf.html bbstored.conf.html raidfile.conf.html 49 64 50 65 .xml.html: … … 52 67 cp $@ $(HTMLPREFIX)/man-html/. 53 68 54 .xml.8 :69 .xml.8 .xml.5: 55 70 $(DBPROC) -o $@ $(MANXSL) $< 56 71 cp $@ man-pages/ -
box/trunk/documentation/bb-man.xsl.tmpl
r556 r2304 3 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 4 4 5 <xsl:import href=" http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"/>5 <xsl:import href="%%DOCBOOK%%"/> 6 6 7 7 <xsl:param name="chunk.section.depth" select="'0'"/>
Note: See TracChangeset
for help on using the changeset viewer.
