Updated text for the KRB5_TRACE env variable.
[krb5.git] / doc / implement / Makefile
1 .SUFFIXES: .tex .dvi .ps
2
3 STYLES= fixunder.sty functions.sty
4 LIBTEX= implement.tex ccache-i.tex rcache-i.tex keytab-i.tex libos-i.tex \
5         kdb-i.tex encrypt-i.tex cksum-i.tex crc-32-i.tex implement.ind
6
7
8 all: implement.ps
9
10
11 implement.ps: implement.dvi
12
13 # hard to capture two-pass semantics in Makefiles...
14 # implement.ind: implement.dvi
15 implement.ind: implement.idx
16         makeindex implement.idx
17
18 implement.idx: 
19         touch implement.ind
20         latex implement.tex
21         rm implement.ind
22
23 clean:
24         rm -f *.toc *.log *.idx *.ind *.aux *.ilg
25
26 really-clean: clean
27         rm -f *.dvi *.ps
28
29
30 implement.dvi:  $(LIBTEX) $(STYLES)
31
32 .tex.dvi:
33         latex $*
34
35
36 .dvi.ps:
37         dvips $*.dvi -o
38