ancient-board-games/resources/tiles/Makefile

11 lines
386 B
Makefile
Raw Normal View History

2021-01-08 22:35:24 +00:00
all: house.png flower.png water.png temple.png market.png gate.png treasury.png
clean:
rm *.png
house.png: ../drawingboard.svg
inkscape --export-id="house" --export-id-only ../drawingboard.svg --export-width=120 --export-height=120 --export-png="$@"
%.png: ../drawingboard.svg
inkscape --export-id="$*" --export-id-only $< --export-width=100 --export-height=100 --export-png="$@"