diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-03-16 15:48:10 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2021-03-16 15:48:10 +0100 |
commit | 4614294614e6f6b38e0ca86e77871e75b4c26071 (patch) | |
tree | 23ac9079936fd3b79e790897c690146dec577eb0 /vorlesungen/slides/2/images/Makefile | |
parent | add new slide (diff) | |
download | SeminarMatrizen-4614294614e6f6b38e0ca86e77871e75b4c26071.tar.gz SeminarMatrizen-4614294614e6f6b38e0ca86e77871e75b4c26071.zip |
add new slides
Diffstat (limited to 'vorlesungen/slides/2/images/Makefile')
-rw-r--r-- | vorlesungen/slides/2/images/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/vorlesungen/slides/2/images/Makefile b/vorlesungen/slides/2/images/Makefile new file mode 100644 index 0000000..8bce5c9 --- /dev/null +++ b/vorlesungen/slides/2/images/Makefile @@ -0,0 +1,32 @@ +# +# Makefile +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +all: quotient1.jpg quotient2.jpg quotient1.pdf quotient2.pdf + +quotient1.png: quotient1.pov quotient.inc + povray +A0.1 +W1920 +H1080 -Oquotient1.png quotient1.pov + +quotient1.jpg: quotient1.png Makefile + convert -extract 1360x1040+330+20 quotient1.png \ + -density 300 -units PixelsPerInch quotient1.jpg + +quotient2.png: quotient2.pov quotient.inc + povray +A0.1 +W1920 +H1080 -Oquotient2.png quotient2.pov + +quotient2.jpg: quotient2.png Makefile + convert -extract 1360x1040+330+20 quotient2.png \ + -density 300 -units PixelsPerInch quotient2.jpg + +quotient: quotient.ini quotient.inc quotient.pov + rm -rf quotient + mkdir quotient + povray +A0.1 -Oquotient/0.png -W1920 -H1080 quotient.ini + +quotient1.pdf: quotient1.tex quotient1.jpg + pdflatex quotient1.tex + +quotient2.pdf: quotient2.tex quotient2.jpg + pdflatex quotient2.tex + |