mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
207 lines
6.9 KiB
Makefile
207 lines
6.9 KiB
Makefile
#################################################################
|
|
# Makefile.in for Samba Documentation
|
|
# Authors: James Moore <jmoore@php.net>
|
|
# Gerald Carter <jerry@samba.org>
|
|
# Jelmer Vernooij <jelmer@samba.org>
|
|
#
|
|
# Please see http://www.samba.org/samba/cvs.html
|
|
# for information on getting the latest
|
|
# source and documentation source files.
|
|
#
|
|
|
|
# Autoconf Variables
|
|
|
|
MANPAGES_NAMES=findsmb.1 smbclient.1 \
|
|
smbspool.8 lmhosts.5 \
|
|
smbcontrol.1 smbstatus.1 \
|
|
smbd.8 net.8 smbtar.1 nmbd.8 \
|
|
smbmnt.8 smbumount.8 nmblookup.1 \
|
|
smbmount.8 swat.8 rpcclient.1 \
|
|
smbpasswd.5 testparm.1 samba.7 \
|
|
smbpasswd.8 testprns.1 \
|
|
smb.conf.5 wbinfo.1 pdbedit.8 \
|
|
smbcacls.1 smbsh.1 winbindd.8 \
|
|
tdbbackup.8 vfstest.1 \
|
|
profiles.1 smbtree.1 ntlm_auth.1 \
|
|
editreg.1 smbcquotas.1
|
|
|
|
## This part contains only rules. You shouldn't need to change it
|
|
## if you are adding docs
|
|
|
|
XSLTPROC = @XSLTPROC@
|
|
PDFLATEX = @PDFLATEX@
|
|
LATEX = @LATEX@
|
|
DVIPS = @DVIPS@
|
|
HTMLDOC = @HTMLDOC@
|
|
SRCDIR = @srcdir@
|
|
MANDIR=../manpages
|
|
HTMLDIR=../htmldocs
|
|
MANPROJDOC = manpages
|
|
PROJDOC = projdoc
|
|
DEVDOC = devdoc
|
|
XMLTO = @XMLTO@
|
|
SMBDOTCONFDOC = smbdotconf
|
|
PSDIR = ..
|
|
PDFDIR = ..
|
|
DVIDIR = ..
|
|
TXTDIR = ../textdocs
|
|
FAQPROJDOC = faq
|
|
FAQDIR = ../faq
|
|
|
|
MANPAGES=$(patsubst %,$(MANDIR)/%,$(MANPAGES_NAMES))
|
|
MANPAGES_HTML=$(patsubst %,$(HTMLDIR)/%.html,$(MANPAGES_NAMES))
|
|
|
|
all:
|
|
@echo "Supported make targets:"
|
|
@echo "manpages - Build manpages"
|
|
@echo "pdf - Build PDF version of HOWTO Collection and Developers Guide"
|
|
@echo "tex - Build Latex version of HOWTO Collection and Developers Guide"
|
|
@echo "dvi - Build Device Independant Files of HOWTO Collection and Developers Guide"
|
|
@echo "ps - Build PostScript version of HOWTO Collection and Developers Guide"
|
|
@echo "txt - Build plain text version of HOWTO Collection and Developers Guide"
|
|
@echo -n "html-single - Build single file HTML version of HOWTO Collection"
|
|
@echo " and developers guide"
|
|
@echo "html - Build HTML version of HOWTO Collection and Developers Guide"
|
|
@echo "htmlman - Build html version of manpages"
|
|
@echo "htmlfaq - Build html version of the FAQ"
|
|
@echo "everything - Build all of the above"
|
|
|
|
everything: manpages pdf html-single html htmlman htmlfaq txt ps
|
|
|
|
# Global rules
|
|
|
|
manpages: $(MANDIR) $(MANPAGES)
|
|
tex: samba-doc.tex dev-doc.tex
|
|
pdf: $(PDFDIR) $(PDFDIR)/Samba-HOWTO-Collection.pdf $(PDFDIR)/Samba-Developers-Guide.pdf
|
|
dvi: $(DVIDIR) $(DVIDIR)/Samba-HOWTO-Collection.dvi $(DVIDIR)/Samba-Developers-Guide.dvi
|
|
ps: $(PSDIR) $(PSDIR)/Samba-HOWTO-Collection.ps $(PSDIR)/Samba-Developers-Guide.ps
|
|
hpdf: $(PDFDIR) $(PDFDIR)/Samba-HOWTO-Collection.pdf
|
|
txt: $(TXTDIR) $(TXTDIR)/Samba-HOWTO-Collection.txt $(TXTDIR)/Samba-Developers-Guide.txt
|
|
htmlman: $(HTMLDIR) $(MANPAGES_HTML) CSS
|
|
htmlfaq: $(HTMLDIR) CSS
|
|
@$(XSLTPROC) --stringparam base.dir "$(FAQDIR)/" --stringparam root.filename samba-faq xslt/html-chunk.xsl $(FAQPROJDOC)/sambafaq.xml
|
|
html-single: $(HTMLDIR) CSS $(HTMLDIR)/Samba-HOWTO-Collection.html $(HTMLDIR)/Samba-Developers-Guide.html
|
|
html: $(HTMLDIR) CSS
|
|
@$(XSLTPROC) xslt/html-chunk.xsl $(PROJDOC)/samba-doc.xml
|
|
|
|
# Text files
|
|
$(TXTDIR):
|
|
mkdir $(TXTDIR)
|
|
|
|
$(TXTDIR)/Samba-HOWTO-Collection.txt: $(PROJDOC)/samba-doc.xml
|
|
@echo "Converting samba-doc to plain text..."
|
|
@$(XMLTO) txt -o $(TXTDIR) $<
|
|
@mv $(TXTDIR)/samba-doc.txt $(TXTDIR)/Samba-HOWTO-Collection.txt
|
|
|
|
$(TXTDIR)/Samba-Developers-Guide.txt: $(DEVDOC)/dev-doc.xml
|
|
@echo "Converting dev-doc to plain text..."
|
|
@$(XMLTO) txt -o $(TXTDIR) $<
|
|
@mv $(TXTDIR)/dev-doc.txt $(TXTDIR)/Samba-Developers-Guide.txt
|
|
|
|
# Tex files
|
|
samba-doc.tex: $(PROJDOC)/samba-doc.xml
|
|
@echo "Converting samba-doc to LaTeX..."
|
|
@$(XSLTPROC) --output $@ xslt/latex.xsl $<
|
|
|
|
dev-doc.tex: $(DEVDOC)/dev-doc.xml
|
|
@echo "Converting dev-doc to LaTeX..."
|
|
@$(XSLTPROC) --output $@ xslt/latex.xsl $<
|
|
|
|
# Adobe PDF files
|
|
$(PDFDIR)/Samba-HOWTO-Collection.pdf: samba-doc.tex
|
|
@echo "Building LaTeX sources via $(PDFLATEX)..."
|
|
@$(PDFLATEX) $< | grep 'Rerun to get cross-references right' && \
|
|
$(PDFLATEX) $< | grep 'Rerun to get cross-references right' && \
|
|
$(PDFLATEX) $< || echo
|
|
@echo "done"
|
|
@mv samba-doc.pdf $@
|
|
|
|
$(PDFDIR)/Samba-Developers-Guide.pdf: dev-doc.tex
|
|
@echo "Building LaTeX sources via $(PDFLATEX)..."
|
|
@$(PDFLATEX) $< | grep 'Rerun to get cross-references right' && \
|
|
$(PDFLATEX) $< | grep 'Rerun to get cross-references right' && \
|
|
$(PDFLATEX) $< || echo
|
|
@echo "done"
|
|
@mv dev-doc.pdf $@
|
|
|
|
# DVI files
|
|
$(DVIDIR)/Samba-HOWTO-Collection.dvi: samba-doc.tex
|
|
@echo "Building LaTeX sources via $(LATEX)..."
|
|
@$(LATEX) $< 2>&1 | grep 'Rerun to get cross-references right' && \
|
|
$(LATEX) $< 2>&1 | grep 'Rerun to get cross-references right' && \
|
|
$(LATEX) $< 2>&1 || echo
|
|
@echo "done"
|
|
@mv samba-doc.dvi $@
|
|
|
|
$(DVIDIR)/Samba-Developers-Guide.dvi: dev-doc.tex
|
|
@echo "Building LaTeX sources via $(LATEX)..."
|
|
@$(LATEX) $< 2>&1 | grep 'Rerun to get cross-references right' && \
|
|
$(LATEX) $< 2>&1 | grep 'Rerun to get cross-references right' && \
|
|
$(LATEX) $< 2>&1 || echo
|
|
@echo "done"
|
|
@mv dev-doc.dvi $@
|
|
|
|
# PostScript files
|
|
$(PSDIR)/Samba-HOWTO-Collection.ps: $(DVIDIR)/Samba-HOWTO-Collection.dvi
|
|
$(DVIPS) -o $@ $<
|
|
|
|
$(PSDIR)/Samba-Developers-Guide.ps: $(DVIDIR)/Samba-Developers-Guide.dvi
|
|
$(DVIPS) -o $@ $<
|
|
|
|
# Single large HTML files
|
|
|
|
$(HTMLDIR):
|
|
@mkdir $(HTMLDIR)
|
|
|
|
CSS: $(HTMLDIR) xslt/html/samba.css
|
|
@cp xslt/html/samba.css $(HTMLDIR)/
|
|
|
|
$(HTMLDIR)/Samba-HOWTO-Collection.html: $(PROJDOC)/samba-doc.xml
|
|
@$(XSLTPROC) --output $@ xslt/html.xsl $<
|
|
|
|
$(HTMLDIR)/Samba-Developers-Guide.html: $(DEVDOC)/dev-doc.xml
|
|
@$(XSLTPROC) --output $@ xslt/html.xsl $<
|
|
|
|
|
|
$(HTMLDIR)/%.html: $(MANPROJDOC)/%.xml
|
|
@$(XSLTPROC) --output $@ xslt/html.xsl $<
|
|
|
|
# Manpages
|
|
$(SMBDOTCONFDOC)/parameters.all.xml: $(SMBDOTCONFDOC)/generate-file-list.sh
|
|
@cd $(SMBDOTCONFDOC) && \
|
|
/bin/sh generate-file-list.sh >parameters.all.xml && \
|
|
cd ..
|
|
|
|
$(SMBDOTCONFDOC)/parameters.global.xml: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/generate-context.xsl
|
|
@cd $(SMBDOTCONFDOC) && \
|
|
$(XSLTPROC) --xinclude \
|
|
--param smb.context "'G'" \
|
|
--output parameters.global.xml \
|
|
generate-context.xsl parameters.all.xml && \
|
|
cd ..
|
|
|
|
$(SMBDOTCONFDOC)/parameters.service.xml: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/generate-context.xsl
|
|
@cd $(SMBDOTCONFDOC) && \
|
|
$(XSLTPROC) --xinclude \
|
|
--param smb.context "'S'" \
|
|
--output parameters.service.xml \
|
|
generate-context.xsl parameters.all.xml && \
|
|
cd ..
|
|
|
|
$(MANPROJDOC)/smb.conf.5.xml: $(SMBDOTCONFDOC)/smb.conf.5.xml $(SMBDOTCONFDOC)/parameters.all.xml \
|
|
$(SMBDOTCONFDOC)/parameters.global.xml $(SMBDOTCONFDOC)/parameters.service.xml \
|
|
$(SMBDOTCONFDOC)/expand-smb.conf.xsl
|
|
@$(XSLTPROC) --xinclude --output $(MANPROJDOC)/smb.conf.5.xml $(SMBDOTCONFDOC)/expand-smb.conf.xsl $(SMBDOTCONFDOC)/smb.conf.5.xml
|
|
|
|
$(MANDIR):
|
|
mkdir $(MANDIR)
|
|
|
|
$(MANDIR)/%: $(MANPROJDOC)/%.xml
|
|
@$(XSLTPROC) xslt/man.xsl $<
|
|
|
|
clean:
|
|
@rm -f $(MANPAGES) $(MANPAGES_HTML) $(HTMLDIR)/*.html $(HTMLDIR)/*.css $(TXTDIR)/*.txt $(PSDIR)/*.ps $(PDFDIR)/*.pdf
|
|
@rm -f $(MANPROJDOC)/smb.conf.5.xml $(SMBDOTCONFDOC)/parameters.*.xml
|
|
@rm -f samba-doc.* dev-doc.*
|
|
|