logo: add makefile to create PNG and PDF versions from master SVG

This commit is contained in:
Marian Beermann 2017-08-13 16:49:17 +02:00
parent cfb4a5fbd0
commit 0b37e59217
3 changed files with 11 additions and 0 deletions

11
docs/_static/Makefile vendored Normal file
View File

@ -0,0 +1,11 @@
all: logo.pdf logo.png
logo.pdf: logo.svg
inkscape logo.svg --export-pdf=logo.pdf
logo.png: logo.svg
inkscape logo.svg --export-png=logo.png --export-dpi=72,72
clean:
rm -f logo.pdf logo.png

BIN
docs/_static/logo.pdf vendored

Binary file not shown.

BIN
docs/_static/logo.png vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB