File: Makefile

package info (click to toggle)
krb5 1.4.4-7etch1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 49,200 kB
  • ctags: 25,837
  • sloc: ansic: 270,278; exp: 21,157; makefile: 10,635; sh: 6,403; yacc: 2,515; perl: 1,925; cpp: 743; awk: 449; python: 379; asm: 248; lex: 190; sed: 172; csh: 147
file content (38 lines) | stat: -rw-r--r-- 644 bytes parent folder | download | duplicates (6)
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
.SUFFIXES: .tex .dvi .ps

STYLES= fixunder.sty functions.sty
LIBTEX= implement.tex ccache-i.tex rcache-i.tex keytab-i.tex libos-i.tex \
	kdb-i.tex encrypt-i.tex cksum-i.tex crc-32-i.tex implement.ind


all: implement.ps


implement.ps: implement.dvi

# hard to capture two-pass semantics in Makefiles...
# implement.ind: implement.dvi
implement.ind: implement.idx
	makeindex implement.idx

implement.idx: 
	touch implement.ind
	latex implement.tex
	rm implement.ind

clean:
	rm -f *.toc *.log *.idx *.ind *.aux *.ilg

really-clean: clean
	rm -f *.dvi *.ps


implement.dvi:  $(LIBTEX) $(STYLES)

.tex.dvi:
	latex $*


.dvi.ps:
	dvips $*.dvi -o