1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
; Generated by gen_dune.ml
(rule (targets ps_real_plot1.mps ps_real_plot2.mps) (deps real_plot.exe) (action (run ./real_plot.exe -ps -prefix "ps_")))
(rule (targets mps_real_plot1.mps mps_real_plot2.mps) (deps real_plot.exe) (action (run ./real_plot.exe -mps -prefix "mps_")))
(rule (targets png_cairo_real_plot1.png png_cairo_real_plot2.png) (deps real_plot.exe) (action (run ./real_plot.exe -png -cairo -prefix "png_cairo_")))
(rule (targets pdf_cairo_real_plot1.pdf pdf_cairo_real_plot2.pdf) (deps real_plot.exe) (action (run ./real_plot.exe -pdf -cairo -prefix "pdf_cairo_")))
(rule (targets svg_cairo_real_plot1.svg svg_cairo_real_plot2.svg) (deps real_plot.exe) (action (run ./real_plot.exe -svg -cairo -prefix "svg_cairo_")))
(rule (targets pgf_real_plot1.pgf pgf_real_plot2.pgf) (deps real_plot.exe) (action (run ./real_plot.exe -pgf -prefix "pgf_")))
(rule (targets pdf_cairo_real_plot1.png) (deps pdf_cairo_real_plot1.pdf) (action (run pdftoppm %{deps} pdf_cairo_real_plot1 -png -singlefile)))
(rule (targets pdf_cairo_real_plot2.png) (deps pdf_cairo_real_plot2.pdf) (action (run pdftoppm %{deps} pdf_cairo_real_plot2 -png -singlefile)))
(rule (targets mps_real_plot1.png) (deps mps_real_plot1.pdf) (action (run pdftoppm %{deps} mps_real_plot1 -png -singlefile)))
(rule (targets mps_real_plot2.png) (deps mps_real_plot2.pdf) (action (run pdftoppm %{deps} mps_real_plot2 -png -singlefile)))
(rule (targets ps_real_plot1.png) (deps ps_real_plot1.pdf) (action (run pdftoppm %{deps} ps_real_plot1 -png -singlefile)))
(rule (targets ps_real_plot2.png) (deps ps_real_plot2.pdf) (action (run pdftoppm %{deps} ps_real_plot2 -png -singlefile)))
(rule (targets pgf_real_plot1.png) (deps pgf_real_plot1.pdf) (action (run pdftoppm %{deps} pgf_real_plot1 -png -singlefile)))
(rule (targets pgf_real_plot2.png) (deps pgf_real_plot2.pdf) (action (run pdftoppm %{deps} pgf_real_plot2 -png -singlefile)))
(rule (targets mps_real_plot1.pdf) (deps mps_real_plot1.mps) (action (ignore-outputs (run pdftex -halt-on-error -fmt=mptopdf \relax mps_real_plot1.mps))))
(rule (targets mps_real_plot2.pdf) (deps mps_real_plot2.mps) (action (ignore-outputs (run pdftex -halt-on-error -fmt=mptopdf \relax mps_real_plot2.mps))))
(rule (targets ps_real_plot1.pdf) (deps ps_real_plot1.mps) (action (ignore-outputs (run pdftex -halt-on-error -fmt=mptopdf \relax ps_real_plot1.mps))))
(rule (targets ps_real_plot2.pdf) (deps ps_real_plot2.mps) (action (ignore-outputs (run pdftex -halt-on-error -fmt=mptopdf \relax ps_real_plot2.mps))))
(rule (targets pgf_real_plot1.pdf) (deps pgf.template pgf_real_plot1.pgf) (action (ignore-outputs (run pdflatex -halt-on-error -jobname pgf_real_plot1 "\\def\\filetoconvert{pgf_real_plot1.pgf}\\input{pgf.template}"))))
(rule (targets pgf_real_plot2.pdf) (deps pgf.template pgf_real_plot2.pgf) (action (ignore-outputs (run pdflatex -halt-on-error -jobname pgf_real_plot2 "\\def\\filetoconvert{pgf_real_plot2.pgf}\\input{pgf.template}"))))
(alias (name real_plot) (deps ps_real_plot1.png ps_real_plot2.png mps_real_plot1.png mps_real_plot2.png png_cairo_real_plot1.png png_cairo_real_plot2.png pdf_cairo_real_plot1.png pdf_cairo_real_plot2.png svg_cairo_real_plot1.svg svg_cairo_real_plot2.svg pgf_real_plot1.png pgf_real_plot2.png))
(alias (name runtest) (deps (alias real_plot)))
|