Add makefile to generate png files

This commit is contained in:
Håkon Løvdal 2018-01-26 22:42:57 +01:00
parent e27857794c
commit a8bd6b5872

12
logo/Makefile Normal file
View File

@ -0,0 +1,12 @@
ALL = bridge.png network-transmit-receive.png pcb.png powerlines.png simple_meter_icon.png
%.png: %.svg
inkscape --export-height=100 $^ --export-png=$@
all: $(ALL)
clean:
rm -rf $(ALL)