aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/slides/Makefile
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@othello.ch>2021-02-16 18:41:02 +0100
committerAndreas Müller <andreas.mueller@othello.ch>2021-02-16 18:41:02 +0100
commit77b274d37031641a160f11cb37f6bf03aead442f (patch)
tree2e4f0a5fd70fdcb9efb30e2974f1337f5440f37c /vorlesungen/slides/Makefile
parentnew stuff on divisibility (diff)
downloadSeminarMatrizen-77b274d37031641a160f11cb37f6bf03aead442f.tar.gz
SeminarMatrizen-77b274d37031641a160f11cb37f6bf03aead442f.zip
start making slides
Diffstat (limited to 'vorlesungen/slides/Makefile')
-rw-r--r--vorlesungen/slides/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/vorlesungen/slides/Makefile b/vorlesungen/slides/Makefile
new file mode 100644
index 0000000..dd8b06e
--- /dev/null
+++ b/vorlesungen/slides/Makefile
@@ -0,0 +1,25 @@
+#
+# Makefile -- build the slide collection
+#
+# (c) 2019 Prof Dr Andreas Müller, Hochschule Rapeprswil
+#
+test: test-handout.pdf test-presentation.pdf
+
+slides: slides-handout.pdf slides-presentation.pdf
+
+include Makefile.inc
+
+files = common.tex $(slides)
+
+slides-handout.pdf: slides-handout.tex slides.tex $(files)
+ pdflatex slides-handout.tex
+
+slides-presentation.pdf: slides-presentation.tex slides.tex $(files)
+ pdflatex slides-presentation.tex
+
+test-handout.pdf: test-handout.tex test.tex $(files)
+ pdflatex test-handout.tex
+
+test-presentation.pdf: test-presentation.tex test.tex $(files)
+ pdflatex test-presentation.tex
+