mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
d0080e261c
Modify the sections dealing with creating the 'fs' bnode to also mention how to create the 'dafs' bnode, and add an appendix explaining DAFS and the differences between DAFS and non-DAFS. Change-Id: I026405dbc3838a9a0247b85cbdc508d6be93275d Reviewed-on: http://gerrit.openafs.org/2508 Tested-by: Andrew Deason <adeason@sinenomine.net> Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
40 lines
1013 B
Makefile
40 lines
1013 B
Makefile
# Makefile to build the AFS QuickStart guide for Unix.
|
|
#
|
|
# This makefile assumes that various utilities are available on the system.
|
|
# On Debian lenny, installing the packages:
|
|
#
|
|
# dblatex
|
|
# docbook-xsl
|
|
# libxml2-utils
|
|
# xsltproc
|
|
#
|
|
# gave me all the utilities needed.
|
|
#
|
|
# HTML_XSL is specific to Debian and will need to be modified on other
|
|
# systems until we have a better mechanism for finding the correct path.
|
|
|
|
all: pdf html
|
|
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
VERSFILE=version
|
|
include @TOP_OBJDIR@/src/config/Makefile.version
|
|
|
|
BOOK = auqbg000.xml
|
|
SRCS = $(BOOK) auqbg003.xml auqbg004.xml auqbg005.xml auqbg006.xml \
|
|
auqbg007.xml auqbg008.xml appendix.xml appendix_dafs.xml
|
|
HTML_XSL = @HTML_XSL@
|
|
XSLTPROC = @XSLTPROC@
|
|
|
|
html: $(SRCS) $(VERSFILE).xml
|
|
$(XSLTPROC) --param navig.graphics 1 \
|
|
--stringparam navig.graphics.path ../ $(HTML_XSL) $(BOOK)
|
|
|
|
pdf: $(SRCS) $(VERSFILE).xml
|
|
dblatex $(BOOK)
|
|
|
|
check:
|
|
xmllint --noout --valid $(BOOK)
|
|
|
|
clean:
|
|
rm -f *.html *.pdf
|