diff options
author | Luigi Scarso <luigi.scarso@gmail.com> | 2023-02-28 22:05:16 +0000 |
---|---|---|
committer | Luigi Scarso <luigi.scarso@gmail.com> | 2023-02-28 22:05:16 +0000 |
commit | f9559db78f0c9c2e74eb54a0a3887a2fd2dc7604 (patch) | |
tree | fe307f56026232c8da9090a0916fa0770fd11f5b /Master/texmf-dist | |
parent | 1f59e3827b56f01cd002c24f0e2a227ef8959d11 (diff) |
Fixed Makefile to compile source-manual
git-svn-id: svn://tug.org/texlive/trunk@66264 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/metapost/base/source-manual/Makefile | 41 |
1 files changed, 3 insertions, 38 deletions
diff --git a/Master/texmf-dist/doc/metapost/base/source-manual/Makefile b/Master/texmf-dist/doc/metapost/base/source-manual/Makefile index 8969a473a70..3023a04b3be 100644 --- a/Master/texmf-dist/doc/metapost/base/source-manual/Makefile +++ b/Master/texmf-dist/doc/metapost/base/source-manual/Makefile @@ -5,8 +5,9 @@ RM = -rm -f latex = latex pdflatex = pdflatex -# texexec is no longer in TL, with the advent of lmtx. -#contextpdf = texexec +# texexec is no longer in TL, with the advent of lmtx; +# context --luatex should run now ConTeXt MkIV +contextpdf = context --luatex #contextdvi = texexec --dvi dvips = dvips bibtex = bibtex @@ -15,7 +16,6 @@ mkindex = makeindex -c -s mpman.ist all: pdf pdf: mpman.pdf mpgraph.pdf mpboxes.pdf #mplibapi.pdf -ps: mpman.ps mpgraph.ps mpboxes.ps mplibapi.ps mplibapi.pdf: mplibapi.tex mv -f mpgraph.mp mpgraph.saved @@ -47,46 +47,11 @@ mpman.pdf: mpman.tex mpman-app-legacy.tex mpman-app-optab.tex mpman-app-refman.t $(mkindex) mpman $(pdflatex) mpman -mplibapi.ps: mplibapi.tex - mv -f mpgraph.mp mpgraph.saved - $(contextdvi) mplibapi - mv -f mpgraph.saved mpgraph.mp - $(dvips) mplibapi - -mpboxes.ps: mpboxes.tex mpboxes.bib mpboxes.mp - $(mpost) mpboxes - $(latex) mpboxes - $(bibtex) mpboxes - $(latex) mpboxes - $(latex) mpboxes - $(mkindex) mpboxes - $(latex) mpboxes - $(dvips) mpboxes - -mpgraph.ps: mpgraph.tex mpgraph.bib mpgraph.mp - $(mpost) mpgraph - $(latex) mpgraph - $(bibtex) mpgraph - $(latex) mpgraph - $(latex) mpgraph - $(dvips) mpgraph - -mpman.ps: mpman.tex mpman-app-legacy.tex mpman-app-optab.tex mpman-app-refman.tex mpman.bib mpman.ist mpman.mp charts.mp mpman-charts.mp - $(mpost) mpman - $(mpost) mpman-charts - $(latex) mpman - $(bibtex) mpman - $(latex) mpman - $(latex) mpman - $(mkindex) mpman - $(latex) mpman - $(dvips) mpman # Install the pdf files into a TL runtime (separate repository). install_files = grdemo-doc.pdf grdemo.pdf install_files += mpboxes.pdf mpgraph.pdf install_files += mpman.pdf -# 2023: leaving out mplibapi.pdf since I don't know how to build it. # # Clearly not a suitable destination directory for anyone else :). --karl. tldocdir = /home/texlive/karl/Master/texmf-dist/doc/metapost/base |