# # Makefile -- make file for the paper laguerre # # (c) 2020 Prof Dr Andreas Mueller # IMGFOLDER := images PRESFOLDER := presentation FIGURES := \ images/targets.pdf \ images/estimates.pgf \ images/integrand.pgf \ images/integrand_exp.pgf \ images/laguerre_poly.pgf \ images/rel_error_mirror.pgf \ images/rel_error_range.pgf \ images/rel_error_shifted.pgf \ images/rel_error_simple.pgf \ images/gammaplot.pdf .PHONY: all all: images presentation .PHONY: images images: $(FIGURES) .PHONY: presentation presentation: $(PRESFOLDER)/presentation.pdf images/%.pdf images/%.pgf: scripts/%.py python3 $< images/gammaplot.pdf: images/gammaplot.tex images/gammapaths.tex cd $(IMGFOLDER) && latexmk -quiet -pdf gammaplot.tex $(PRESFOLDER)/%.pdf: $(PRESFOLDER)/%.tex $(FIGURES) cd $(PRESFOLDER) && latexmk -quiet -pdf $(