aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/34c3/assets/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'configs/conferences/34c3/assets/Makefile')
-rw-r--r--configs/conferences/34c3/assets/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/configs/conferences/34c3/assets/Makefile b/configs/conferences/34c3/assets/Makefile
new file mode 100644
index 0000000..fff4358
--- /dev/null
+++ b/configs/conferences/34c3/assets/Makefile
@@ -0,0 +1,10 @@
+SVGFILES := $(wildcard *.svg)
+MINSVGS := $(SVGFILES:%.svg=min/%.svg)
+
+all: $(MINSVGS)
+
+min/%.svg : %.svg
+ svgo -i $*.svg -o min/$*.svg
+
+clean:
+ rm $(MINSVGS)