blob: 0a3979e8db0f57b110f28c927a0ade8fbce76a10 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#
# Makefile
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
all: complexbasis.pdf homocycles.pdf homoboundaries.pdf homoclasses.pdf \
gausshomoex.pdf gausshomobasis.pdf dreieck.pdf polyeder.pdf \
approximation.pdf tetraeder.pdf
dreieck.pdf: dreieck.tex
pdflatex dreieck.tex
polyeder.pdf: polyeder.tex
pdflatex polyeder.tex
gausshomobasis.pdf: gausshomobasis.tex
pdflatex gausshomobasis.tex
gausshomoex.pdf: gausshomoex.tex
pdflatex gausshomoex.tex
homocycles.pdf: homocycles.tex
pdflatex homocycles.tex
homoboundaries.pdf: homoboundaries.tex
pdflatex homoboundaries.tex
homoclasses.pdf: homoclasses.tex
pdflatex homoclasses.tex
complexbasis.pdf: complexbasis.tex
pdflatex complexbasis.tex
approximation.pdf: approximation.tex approx.tex
pdflatex approximation.tex
approx.tex: approx.m
octave approx.m
tetraeder.png: tetraeder.pov
povray +A0.1 -W1920 -H1080 -O$@ $<
tetraeder.jpg: tetraeder.png Makefile
convert -extract 1080x1080+520 tetraeder.png tetraeder.jpg
tetraeder.pdf: tetraeder.tex tetraeder.jpg
pdflatex tetraeder.tex
|