diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/method/Makefile')
-rw-r--r-- | Master/texmf-dist/source/latex/method/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/method/Makefile b/Master/texmf-dist/source/latex/method/Makefile new file mode 100644 index 00000000000..3c4d215c158 --- /dev/null +++ b/Master/texmf-dist/source/latex/method/Makefile @@ -0,0 +1,20 @@ +CODE := '\date{1999/03/25}\input{method.dtx}' +LATEX := pdflatex -draftmode $(CODE) +LATEX_FINISH := pdflatex $(CODE) + +method.pdf: method.dtx method.ind method.gls + $(LATEX) + $(LATEX) + $(LATEX_FINISH) + +method.ind: method.dtx method.idx + makeindex -s gind.ist -o method.ind method.idx + +method.gls: method.dtx method.glo + makeindex -s gglo.ist -o method.gls method.glo + +method.idx: method.dtx + $(LATEX) + +method.glo: method.dtx + $(LATEX) |