blob: 85a1b836659cf024ecb8572cfe3943bfb1488135 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
|
#
# Makefile -- make file for the paper laguerre
#
# (c) 2020 Prof Dr Andreas Mueller
#
IMGFOLDER := images
PRESFOLDER := presentation
FIGURES := \
images/targets.pdf \
images/rel_error_complex.pdf \
images/estimates.pdf \
images/integrand.pdf \
images/integrand_exp.pdf \
images/laguerre_poly.pdf \
images/rel_error_mirror.pdf \
images/rel_error_range.pdf \
images/rel_error_shifted.pdf \
images/rel_error_simple.pdf \
images/gammaplot.pdf
.PHONY: all
all: images presentation
.PHONY: images
images: $(FIGURES)
.PHONY: presentation
presentation: $(PRESFOLDER)/presentation.pdf
images/%.pdf images/%.pgf: scripts/%.py scripts/gamma_approx.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 $(<F)
.PHONY: clean
clean:
rm $(FIGURES)
cd $(IMGFOLDER) && latexmk -C
cd $(PRESFOLDER) && latexmk -C
|