aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/slides/Makefile
diff options
context:
space:
mode:
authorRoy Seitz <roy.seitz@ost.ch>2021-02-22 08:48:36 +0100
committerRoy Seitz <roy.seitz@ost.ch>2021-02-22 08:48:36 +0100
commita82da67587b049e54dcd53e76b4220d22a60d842 (patch)
tree8b0717987839cf0e6cac6c4297f95f94f695f247 /vorlesungen/slides/Makefile
parentTypos. (diff)
parentadd ende (diff)
downloadSeminarMatrizen-a82da67587b049e54dcd53e76b4220d22a60d842.tar.gz
SeminarMatrizen-a82da67587b049e54dcd53e76b4220d22a60d842.zip
Merge remote-tracking branch 'origin/master'
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
+