blob: 49cb7dcf9b3cc212521b34c3cd3577ee837423fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
.SUFFIXES: .tex .dvi .ps
SHELL=/bin/sh
STYLES=changebar.sty fixunder.sty functions.sty krb5idx.sty
LIBTEX= library.tex intro.tex tables.tex errors.tex krb5.tex ccache.tex \
rcache.tex keytab.tex libos.tex free.tex
DESTEX= libdes.tex
all: library.ps libdes.ps
libdes.dvi: $(DESTEX) $(STYLES)
library.ps: library.dvi
clean:
rm -f *.toc *.log *.idx *.ind *.aux lib1.stamp
really-clean: clean
rm -f *.dvi *.ps
library.dvi: lib1.stamp $(LIBTEX) $(STYLES)
latex library
lib1.stamp: $(LIBTEX) $(STYLES)
touch library.ind
latex library
makeindex -s krb5.ist library.idx
date > lib1.stamp
.tex.dvi:
latex $*
.dvi.ps:
dvips $*.dvi -o
|