Newer
Older
Import / web / www.invertedlogic.com / images / Makefile

IMAGES := banner.png footer.png logo.png


all: $(IMAGES)


install: all
	svn commit $(IMAGES)
	# Run pngcrush when moving PNGs from build directory to image directory
	../src/publish.sh


clean:
	rm -rf $(IMAGES)


%.png: %.xcf
	xcf2png $< > tmp-$@.tmp
	pngcrush tmp-$@.tmp $@ > /dev/null
	rm tmp-$@.tmp