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/arraysort/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 macros/latex/contrib/arraysort/Makefile (limited to 'macros/latex/contrib/arraysort/Makefile') diff --git a/macros/latex/contrib/arraysort/Makefile b/macros/latex/contrib/arraysort/Makefile new file mode 100644 index 0000000000..234ecfac7e --- /dev/null +++ b/macros/latex/contrib/arraysort/Makefile @@ -0,0 +1,20 @@ +all: clean arraysort.pdf + +clean: + rm -f *.log *.bbl *.blg *.dvi *.glo *.idx *.ilg *.ind *.sty *.aux *.gls *.zip *.tmp *~; + +dist: clean + cd .. && zip -r arraysort/arraysort.zip arraysort/ + +arraysort.sty : arraysort.ins arraysort.dtx + latex arraysort.ins + +arraysort.pdf : arraysort.sty arraysort.glo arraysort.ind + time pdflatex arraysort.dtx + +# Glossary contains the changelist(?) +arraysort.glo : arraysort.dtx + pdflatex arraysort.dtx && makeindex -s gglo.ist -o arraysort.gls arraysort.glo + +arraysort.ind : arraysort.idx + makeindex -s gind.ist -o arraysort.ind arraysort.idx -- cgit v1.2.3