diff options
Diffstat (limited to 'buch/chapters/50-permutationen/images/Makefile')
-rw-r--r-- | buch/chapters/50-permutationen/images/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/buch/chapters/50-permutationen/images/Makefile b/buch/chapters/50-permutationen/images/Makefile new file mode 100644 index 0000000..c2e0e9f --- /dev/null +++ b/buch/chapters/50-permutationen/images/Makefile @@ -0,0 +1,20 @@ +# +# Makefile -- Bilder +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +all: transpositionen.pdf zyklenzerlegung.pdf permutation.pdf \ + komposition.pdf + +permutation.pdf: permutation.tex + pdflatex permutation.tex + +komposition.pdf: komposition.tex + pdflatex komposition.tex + +transpositionen.pdf: transpositionen.tex + pdflatex transpositionen.tex + +zyklenzerlegung.pdf: zyklenzerlegung.tex + pdflatex zyklenzerlegung.tex + |