blob: 571c06efb572bfd1d7c5a0d362d1c6c0c8237f3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $Id$
# Public domain. Originally written by Norbert Preining, 2018.
all: texlive-installer-graphics-vert.png
texlive-installer-graphics-vert.png: texlive-installer-graphics-horiz.png
convert $< -rotate 270 $@
texlive-installer-graphics-horiz.png: texlive-installer-graphics.pdf
pdftopng -r 50 $< - >$@
texlive-installer-graphics.pdf: texlive-installer-graphics.tex tl-lion-black.pdf
texfot pdflatex '\nonstopmode\input $<'
# no longer used
#texlive.png: texlive-installer-graphics-vert.png
# convert $< -scale 97x480 $@
clean:
-rm -f texlive-installer-graphics.{pdf,aux,log,png}
|