blob: 2c94e8a10a9acba4419bec671ce1c459aa97bd95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# Makefile -- build images
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
all: ideale.pdf gausszahlen.pdf strukturen.pdf rref.pdf
ideale.pdf: ideale.tex
pdflatex ideale.tex
gausszahlen.pdf: gausszahlen.tex
pdflatex gausszahlen.tex
strukturen.pdf: strukturen.tex
pdflatex strukturen.tex
rref.pdf: rref.tex
pdflatex rref.tex
|