blob: 21eaebfcf74c9d4b6f3d2901ee9ad1d8afe3fc33 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Makefile for MetaPost documentation. Public domain.
# Rules for the groff/troff docs are in TeX Live,
# texmf-dist/doc/metapost/base/Makefile.
latex = latex
pdflatex = pdflatex
dvips = dvips
bibtex = bibtex
mpost = mpost -tex=tex
mkindex = makeindex -c -s mpman.ist
all: pdf
pdf: mpman.pdf mpgraph.pdf mpboxes.pdf
ps: mpman.ps mpgraph.ps mpboxes.ps
mpboxes.pdf: mpboxes.tex mpboxes.bib mpboxes.mp
$(mpost) mpboxes
$(pdflatex) mpboxes
$(bibtex) mpboxes
$(pdflatex) mpboxes
$(mkindex) mpboxes
$(pdflatex) mpboxes
mpgraph.pdf: mpgraph.tex mpgraph.bib mpgraph.mp
$(mpost) mpgraph
$(pdflatex) mpgraph
$(bibtex) mpgraph
$(pdflatex) mpgraph
$(pdflatex) mpgraph
mpman.pdf: mpman.tex mpman-app-legacy.tex mpman-app-optab.tex mpman-app-refman.tex mpman.bib mpman.ist mpman.mp
$(mpost) mpman
$(pdflatex) mpman
$(bibtex) mpman
$(pdflatex) mpman
$(pdflatex) mpman
$(mkindex) mpman
$(pdflatex) mpman
mpboxes.ps: mpboxes.tex mpboxes.bib mpboxes.mp
$(mpost) mpboxes
$(latex) mpboxes
$(bibtex) mpboxes
$(latex) mpboxes
$(latex) mpboxes
$(mkindex) mpboxes
$(latex) mpboxes
$(dvips) mpboxes
mpgraph.ps: mpgraph.tex mpgraph.bib mpgraph.mp
$(mpost) mpgraph
$(latex) mpgraph
$(bibtex) mpgraph
$(latex) mpgraph
$(latex) mpgraph
$(dvips) mpgraph
mpman.ps: mpman.tex mpman-app-legacy.tex mpman-app-optab.tex mpman-app-refman.tex mpman.bib mpman.ist mpman.mp
$(mpost) mpman
$(latex) mpman
$(bibtex) mpman
$(latex) mpman
$(latex) mpman
$(mkindex) mpman
$(latex) mpman
$(dvips) mpman
clean:
rm -f *.aux *.bbl *.blg *.dvi *.log *.mpx *.mps
rm -f *.idx *.ilg *.ind *.toc *.out
distclean: clean
rm -f mp*.pdf mp*.ps
|