]> git.sur5r.net Git - bacula/docs/blob - docs/manuals/en/problems/Makefile.in
all manuals pdf and dvi. No web at this point
[bacula/docs] / docs / manuals / en / problems / Makefile.in
1 #
2 #
3 #  Makefile for LaTeX  
4 #
5 # To build everything do
6 #    make tex
7 #    make web
8 #    make html
9 #    make dvipdf
10 #
11 # or simply
12 #
13 #    make
14 #
15 # for rapid development do:
16 #    make tex
17 #    make show
18 #
19 #
20 # If you are having problems getting "make" to work, debugging it is
21 #  easier if can see the output from latex, which is normally redirected
22 #  to /dev/null.  To see it, do the following:
23 #
24 #   cd docs/manual
25 #   make tex
26 #   latex bacula.tex
27 #
28 #  typically the latex command will stop indicating the error (e.g. a
29 #  missing \ in front of a _ or a missing { or ] ...
30 #
31 #  The following characters must be preceded by a backslash
32 #    to be entered as printable characters:
33
34 #    # $ % & ~ _ ^ \ { }
35 #
36
37 IMAGES=../../../images
38
39 MANUALSDIR=../..
40 DOC=problems
41 MAINDOC=Bacula_Problem_Resolution_G.html
42 BSYSMANUALDIR=../../../bsysmanual
43 COVERSDIR=../../../covers
44 PDFCOVERSDIR=$(COVERSDIR)/pdf
45 SVGCOVERSDIR=$(COVERSDIR)/svg
46 EPSCOVERSDIR=$(COVERSDIR)/eps
47 LICENSESDIR=$(MANUALSDIR)/licences
48 COVERNAME=coverpage-problems
49 BSYSMANNAME=bsysmanual-coverpagebackground
50 LICENCES=$(wildcard $(LICENSESDIR)/*.tex)
51 BSYSCOMPILERFILE=bsys-compiler-mode.tex
52 PDFCOMPILERFILE=$(MANUALSDIR)/bsys-pdflatex-mode.tex
53 TEXCOMPILERFILE=$(MANUALSDIR)/bsys-latex-mode.tex
54 WEBCOMPILERFILE=$(MANUALSDIR)/bsys-web-mode.tex
55
56 first_rule: all
57
58 all: tex pdflatex mini-clean
59
60 .SUFFIXES:     .tex .html
61 .PHONY:
62 .DONTCARE:
63
64 pdfcovers:
65         @echo -n "Linking coverpage and background PDF format..."
66         @(cd $(SVGCOVERSDIR) ; make pdf)
67         @ln -sf `pwd`/${PDFCOVERSDIR}/${COVERNAME}.pdf `pwd`/${BSYSMANUALDIR}/${BSYSMANNAME}.pdf
68         @echo "Done."
69
70 pdfimages: 
71         @echo "Generating PDF images..."
72         @(cd ${IMAGES}/svg ; make pdf)
73         @echo "Done."
74
75 pngimages:
76         @echo "Generating PNG images..."
77         @(cd ${IMAGES}/svg ; make png)
78         @echo "Done."
79
80 epsimages:
81         @echo "Generating EPS images..."
82         @(cd ${IMAGES}/svg ; make eps)
83         @rm -rf ${IMAGES}/png
84         @rm -rf ${IMAGES}/pdf
85         @echo "Done."
86
87 epscovers:
88         @echo -n "Linking coverpage and background EPS format..."
89         @(cd $(SVGCOVERSDIR) ; make eps)
90         @ln -sf `pwd`/${EPSCOVERSDIR}/${COVERNAME}.eps `pwd`/${BSYSMANUALDIR}/${BSYSMANNAME}.eps
91         @rm -f `pwd`/${BSYSMANUALDIR}/${BSYSMANNAME}.pdf
92         @echo "Done."
93
94 commonfiles:
95         @../../update_version
96         @echo "Making version `cat version.tex`"
97         @echo -n "Linking shared files..."
98         @(for L in $(LICENCES); do ln -sf $$L .; done)
99         @echo "Done"
100
101 tex: epscovers epsimages commonfiles
102         @ln -sf $(TEXCOMPILERFILE) $(BSYSCOMPILERFILE)
103         @touch ${DOC}i-dir.tex ${DOC}i-fd.tex ${DOC}i-sd.tex \
104              ${DOC}i-console.tex ${DOC}i-general.tex
105         latex -interaction=batchmode ${DOC}.tex
106         makeindex ${DOC}.idx -o ${DOC}.ind 2>/dev/null
107         latex -interaction=batchmode ${DOC}.tex
108
109
110 pdflatex: pdfcovers pdfimages commonfiles
111         @ln -sf $(PDFCOMPILERFILE) $(BSYSCOMPILERFILE)
112         pdflatex -interaction=batchmode ${DOC}.tex
113         makeindex ${DOC}.idx -o ${DOC}.ind 2>/dev/null
114         pdflatex -interaction=batchmode ${DOC}.tex
115         pdflatex -interaction=batchmode ${DOC}.tex
116
117 html:
118         @echo " "
119         @echo "Making html"
120         @cp -fp ${IMAGES}/*.eps .
121         @rm -f next.eps next.png prev.eps prev.png up.eps up.png
122         @(if [ -f imagename_translations ] ; then \
123             ./translate_images.pl --from_meaningful_names ${DOC}.html; \
124          fi)
125         latex2html -white -no_subdir -split 0 -toc_stars -white -notransparent \
126                 -init_file latex2html-init.pl ${DOC} >tex.out 2>&1
127         @(if [ -f imagename_translations ] ; then \
128             ./translate_images.pl --from_meaningful_names ${DOC}.html; \
129          fi)
130         (cd ${DOC}; for i in *.png ; do cp -fp ../${IMAGES}/$${i} . 2>/dev/null; done)
131         @echo "Done making html"
132
133 web:
134         @echo "Making web"
135         @rm -rf ${DOC}
136         @mkdir -p ${DOC}
137         @cp -fp ${IMAGES}/*.eps .
138         @rm -f next.eps next.png prev.eps prev.png up.eps up.png
139         @rm -f ${DOC}/xp-*.png
140         @rm -f ${DOC}/next.eps ${DOC}/next.png ${DOC}/prev.eps ${DOC}/prev.png ${DOC}/up.eps ${DOC}/up.png
141         latex2html -split 3 -local_icons -t "Bacula Problem Resolution Guide" -long_titles 4 \
142                 -toc_stars -contents_in_nav -init_file latex2html-init.pl \
143                 -no_antialias -no_antialias_text \
144                 -white -notransparent ${DOC} >tex.out 2>&1
145         @(if [ -f imagename_translations ] ; then \
146             ./translate_images.pl --from_meaningful_names ${DOC}.html; \
147          fi)
148         @cp -f ${DOC}/${MAINDOC} ${DOC}/index.html
149         @echo "Done making web"
150 show:
151         xdvi ${DOC}
152
153 texcheck:
154         ./check_tex.pl ${DOC}.tex
155
156 main_configs:
157         pic2graph -density 100 <main_configs.pic >main_configs.png
158
159 mini-clean:
160         @rm -f 1 2 3 *.tex~
161         @rm -f *.gif *.jpg *.eps
162         @rm -f *.aux *.cp *.fn *.ky *.log *.pg
163         @rm -f *.backup *.ilg *.lof *.lot
164         @rm -f *.cdx *.cnd *.ddx *.ddn *.fdx *.fnd *.ind *.sdx *.snd
165         @rm -f *.dnd *.old *.out 
166         @rm -f ${DOC}/*.gif ${DOC}/*.jpg ${DOC}/*.eps
167         @rm -f ${DOC}/*.aux ${DOC}/*.cp ${DOC}/*.fn ${DOC}/*.ky ${DOC}/*.log ${DOC}/*.pg
168         @rm -f ${DOC}/*.backup ${DOC}/*.ilg ${DOC}/*.lof ${DOC}/*.lot
169         @rm -f ${DOC}/*.cdx ${DOC}/*.cnd ${DOC}/*.ddx ${DOC}/*.ddn ${DOC}/*.fdx ${DOC}/*.fnd ${DOC}/*.ind ${DOC}/*.sdx ${DOC}/*.snd
170         @rm -f ${DOC}/*.dnd ${DOC}/*.old ${DOC}/*.out
171         @rm -f ${DOC}/WARNINGS
172         @rm -f ${DOC}i-*.tex
173
174
175 clean:
176         @find . -type f -name ${DOC}.mtc* -exec rm {} \;
177         @find . -type l -name "*.tex" -exec rm {} \;
178         @rm -f 1 2 3 *.tex~
179         @rm -f *.png *.gif *.jpg *.eps
180         @rm -f *.pdf *.aux *.cp *.fn *.ky *.log *.pg
181         @rm -f *.html *.backup *.ps *.dvi *.ilg *.lof *.lot
182         @rm -f *.cdx *.cnd *.ddx *.ddn *.fdx *.fnd *.ind *.sdx *.snd
183         @rm -f *.dnd imagename_translations
184         @rm -f *.old WARNINGS *.out *.toc *.idx
185         @rm -f ${DOC}i-*.tex
186         @rm -rf ${DOC}
187
188
189 distclean: clean
190         @rm -f images.pl labels.pl internals.pl
191         @rm -f Makefile version.tex