aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/33c3/assets/Makefile
blob: 89752d2130925d41915fcdd4e5a55e01bf4b9893 (plain)
1
2
3
4
5
6
7
8
9
10
SVGFILES := $(wildcard *.svg)
MINSVGS := $(SVGFILES:%.svg=min/%.svg)

all: $(MINSVGS)

min/%.svg : %.svg
	svgo $*.svg min/$*.svg

clean:
	rm $(MINSVGS)