diff options
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: |