blob: 7d2f375f23c45a82ace9711560a698e6a658e152 (
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
|
#
# Makefile -- build images for crypto chapter
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
all: dh.pdf elliptic.pdf schieberegister.pdf multiplikation.pdf sbox.pdf \
shift.pdf
dh.pdf: dh.tex
pdflatex dh.tex
elliptic.pdf: elliptic.tex
pdflatex elliptic.tex
schieberegister.pdf: schieberegister.tex
pdflatex schieberegister.tex
multiplikation.pdf: multiplikation.tex
pdflatex multiplikation.tex
sbox.pdf: sbox.tex
pdflatex sbox.tex
shift.pdf: shift.tex
pdflatex shift.tex
|