aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/slides/Makefile
blob: dd8b06ea1299f3224359808cedb004f2594704a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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