view source/Makefile @ 47:82036437ebf6

Better movement and swap between werewolf and human form with 'w' (hodgestar, decoy).
author Simon Cross <hodgestar@gmail.com>
date Sun, 01 Sep 2013 18:22:46 +0200
parents 529395304216
children bcaa3b7a0890
line wrap: on
line source

SOURCES = $(shell find svg -name '*.svg')
TARGETS = $(patsubst %.svg,%.png,$(SOURCES))
OPTIMIZE = 1

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

%.png: %.svg
	inkscape --export-png $@ --export-dpi 9 $<
ifeq ($(OPTIMIZE),1)
	optipng -o4 -preserve $@
	advpng -z4 $@
endif