diff options
Diffstat (limited to '')
-rw-r--r-- | buch/chapters/040-rekursion/images/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/buch/chapters/040-rekursion/images/Makefile b/buch/chapters/040-rekursion/images/Makefile new file mode 100644 index 0000000..58f79b8 --- /dev/null +++ b/buch/chapters/040-rekursion/images/Makefile @@ -0,0 +1,12 @@ +# +# Makefile +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +all: gammaplot.pdf + +gammaplot.pdf: gammaplot.tex gammapaths.tex + pdflatex gammaplot.tex + +gammapaths.tex: gammaplot.m + octave gammaplot.m |