view source/Makefile @ 429:46ecb2c4cb61

Special relativistic gravities again.
author davidsharpe@185.4.16.172.in-addr.arpa
date Sat, 07 Sep 2013 13:39:10 +0200
parents eba98879f47f
children 09c76e7ce675
line wrap: on
line source

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

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

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