From e0c6872cf40896c7be36b11dcc744620f10adf1d Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 2 Sep 2019 13:46:59 +0900 Subject: Initial commit --- macros/latex/contrib/method/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 macros/latex/contrib/method/Makefile (limited to 'macros/latex/contrib/method/Makefile') diff --git a/macros/latex/contrib/method/Makefile b/macros/latex/contrib/method/Makefile new file mode 100644 index 0000000000..3c4d215c15 --- /dev/null +++ b/macros/latex/contrib/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) -- cgit v1.2.3