aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/35c3/assets/Makefile
blob: 51392b61919200d082d2843b2f4ef015969124a3 (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 -i $*.svg -o min/$*.svg

clean:
	rm -f $(MINSVGS)