diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-15 17:56:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-15 17:56:37 +0000 |
commit | 3f126e90ac9efa15e72c8b415a2f25d3b19c509a (patch) | |
tree | 3fb6f3eebbf51978c31e8d6ff1180432e50b9935 /Master/texmf-dist/doc/latex/pgfplots/Makefile | |
parent | 9667a29e9fef0ef89c9d7bd311e2d2a6aaccf50c (diff) |
painful pgfplots update (14jun08)
git-svn-id: svn://tug.org/texlive/trunk@8751 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/pgfplots/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/pgfplots/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/pgfplots/Makefile b/Master/texmf-dist/doc/latex/pgfplots/Makefile new file mode 100644 index 00000000000..8751da9863b --- /dev/null +++ b/Master/texmf-dist/doc/latex/pgfplots/Makefile @@ -0,0 +1,17 @@ + +PDFLATEX=pdflatex -shell-escape + +all: pgfplots.pdf pgfplotstable.pdf + @echo "$^ have been compiled successfully. I did NOT check for references, so you may need to rerun make several times." + +pgfplots: pgfplots.pdf +pgfplotstable: pgfplotstable.pdf + +%.pdf: FORCE + @$(PDFLATEX) $(@:.pdf=.tex) + @bibtex $(@:.pdf=) || exit 0 + @makeindex $(@:.pdf=) || exit 0 + @echo "" + @echo "$@ compiled successfully. You may need to re-run make several times to get all cross-references right." + +FORCE: |