blob: c23a70f3b50d1c11ab34d3e20d17a0b7d1acd9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# Makefile -- build the book cover
#
# (c) 2018 Prof Dr Andreas Müller, Hochschule Rapperswil
#
all: buchcover.png front.pdf back.pdf
buchcover.pdf: buchcover.tex
pdflatex buchcover.tex
buchcover.png: buchcover.pdf
convert -density 300 -extract 1966x2900+2630+190 buchcover.pdf \
buchcover.png
front.pdf: front.tex buchcover.pdf
pdflatex front.tex
back.pdf: back.tex buchcover.pdf
pdflatex back.tex
|