blob: dfb797e14ab84a6f12305b3ae4709ffc08da486c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $Id$
# Public domain. Originally written by Norbert Preining, 2018.
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 $<'
clean:
-rm -f texlive-installer-graphics.{pdf,aux,log,png}
|