diff options
author | Andreas Müller <andreas.mueller@hsr.ch> | 2020-12-03 17:18:03 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@hsr.ch> | 2020-12-03 17:18:03 +0100 |
commit | ac4b80be810fc615b426557ad86f0cb8092f5304 (patch) | |
tree | 2afe81a7f8a178fa479a91bec4cf61a54f8eae9f /cover/Makefile | |
parent | some more ideas (diff) | |
download | SeminarMatrizen-ac4b80be810fc615b426557ad86f0cb8092f5304.tar.gz SeminarMatrizen-ac4b80be810fc615b426557ad86f0cb8092f5304.zip |
add files
Diffstat (limited to 'cover/Makefile')
-rw-r--r-- | cover/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cover/Makefile b/cover/Makefile new file mode 100644 index 0000000..76ae56f --- /dev/null +++ b/cover/Makefile @@ -0,0 +1,22 @@ +# +# 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 Makefile + convert -density 300 -extract 1966x2900+2630+190 buchcover.pdf \ + buchcover.png + +nozzle.jpg: nozzle.png + convert nozzle.png -density 300 -units PixelsPerInch -flop nozzle.jpg + +front.pdf: front.tex buchcover.pdf + pdflatex front.tex + +back.pdf: back.tex buchcover.pdf + pdflatex back.tex |