Experimental support for building Palm Pilot DOC format files. The result
works, but isn't great (at least in SmartDOC). Still, if you want to carry the FreeBSD FAQ on your Palm (or the Handbook for that matter) it's a start. PR: docs/13439 Submitted by: Slaven Rezic <eserte@cs.tu-berlin.de>
This commit is contained in:
parent
6db6aa269f
commit
535b364c47
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=6163
1 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# $FreeBSD: doc/share/mk/doc.docbook.mk,v 1.2 1999/09/06 06:53:39 peter Exp $
|
||||
# $FreeBSD: doc/share/mk/doc.docbook.mk,v 1.3 1999/11/01 19:41:02 nik Exp $
|
||||
#
|
||||
# This include file <doc.docbook.mk> handles building and installing of
|
||||
# DocBook documentation in the FreeBSD Documentation Project.
|
||||
|
@ -57,7 +57,7 @@ DSSSLCATALOG= ${PREFIX}/share/sgml/docbook/dsssl/modular/catalog
|
|||
|
||||
JADEOPTS= ${JADEFLAGS} -c ${FREEBSDCATALOG} -c ${DSSSLCATALOG} -c ${DOCBOOKCATALOG} -c ${JADECATALOG} ${EXTRA_CATALOGS:S/^/-c /g}
|
||||
|
||||
KNOWN_FORMATS= html html-split html-split.tar txt rtf ps pdf tex dvi tar
|
||||
KNOWN_FORMATS= html html-split html-split.tar txt rtf ps pdf tex dvi tar pdb
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
#
|
||||
|
@ -134,6 +134,9 @@ CLEANFILES+= ${DOC}.tar
|
|||
.elif ${_cf} == "doc"
|
||||
_docs+= ${DOC}.doc
|
||||
CLEANFILES+= ${DOC}.doc
|
||||
.elif ${_cf} == "pdb"
|
||||
_docs+= ${DOC}.pdb
|
||||
+CLEANFILES+= ${DOC}.pdb
|
||||
.endif
|
||||
.endfor
|
||||
|
||||
|
@ -206,6 +209,9 @@ ${DOC}.ps: ${DOC}.dvi
|
|||
${DOC}.tar: ${SRCS}
|
||||
tar cf ${.TARGET} ${.ALLSRC}
|
||||
|
||||
${DOC}.pdb: ${DOC}.txt
|
||||
pilot_makedoc ${DOC}.txt ${DOC}.pdb ${DOC}
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
#
|
||||
# Validation targets
|
||||
|
|
Loading…
Reference in a new issue