diff options
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/040-rekursion/images/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/buch/chapters/040-rekursion/images/Makefile b/buch/chapters/040-rekursion/images/Makefile index 58f79b8..9608a94 100644 --- a/buch/chapters/040-rekursion/images/Makefile +++ b/buch/chapters/040-rekursion/images/Makefile @@ -3,10 +3,16 @@ # # (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule # -all: gammaplot.pdf +all: gammaplot.pdf fibonacci.pdf gammaplot.pdf: gammaplot.tex gammapaths.tex pdflatex gammaplot.tex gammapaths.tex: gammaplot.m octave gammaplot.m + +fibonaccigrid.tex: fibonacci.m + octave fibonacci.m + +fibonacci.pdf: fibonacci.tex fibonaccigrid.tex + pdflatex fibonacci.tex |