mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-15 16:25:43 +00:00
13 lines
193 B
Makefile
13 lines
193 B
Makefile
|
|
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)
|
|
|
|
|