diff options
author | Karl Berry <karl@freefriends.org> | 2011-03-01 23:44:06 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-03-01 23:44:06 +0000 |
commit | 8f4172befed36d7074c76019c9ffd6b67a22ce17 (patch) | |
tree | 8ecf1ba5d6f28b0ae7b632569d8ff5b2322992ed /Master/texmf-dist/source/latex/standalone/Makefile | |
parent | f59620f253808e843e73159d36397cb4f15ec93a (diff) |
standalone 0.4 (1mar11)
git-svn-id: svn://tug.org/texlive/trunk@21573 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/standalone/Makefile')
-rw-r--r-- | Master/texmf-dist/source/latex/standalone/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Master/texmf-dist/source/latex/standalone/Makefile b/Master/texmf-dist/source/latex/standalone/Makefile index f399ae376d5..a9df0a0e9cc 100644 --- a/Master/texmf-dist/source/latex/standalone/Makefile +++ b/Master/texmf-dist/source/latex/standalone/Makefile @@ -21,23 +21,19 @@ ${PACKEDFILES}: standalone.dtx standalone.ins unpack: ${PACKEDFILES} # 'doc' and 'standalone.pdf' call itself until everything is stable -doc: standalone.pdf +doc: standalone.pdf @${MAKE} --no-print-directory standalone.pdf pdfopt: doc @-pdfopt standalone.pdf .temp.pdf && mv .temp.pdf standalone.pdf -standalone.pdf: standalone.dtx standalone.gls standalone.ind - ${LATEXMK} standalone.dtx - -standalone.idx standalone.glo: standalone.dtx - ${LATEXMK} standalone.dtx - -standalone.ind: standalone.idx +%.pdf: %.dtx + ${PDFLATEX} $< -makeindex -s gind.ist -o "$@" "$<" - -standalone.gls: standalone.glo -makeindex -s gglo.ist -o "$@" "$<" + ${PDFLATEX} $< + ${PDFLATEX} $< + .PHONY: test |