aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/34c3/assets/Makefile
diff options
context:
space:
mode:
authordedeibel2017-12-14 00:03:40 +0100
committerdedeibel2017-12-14 00:03:40 +0100
commitcbc1055ec5bbce5bdba80bf925489fd95b0b64cd (patch)
treec49139750150bb8c63923e5b89955e2e884d4b78 /configs/conferences/34c3/assets/Makefile
parent7d5071ac4bca9a6658786e5ccffc1a35a51c37e1 (diff)
Initial configuration for 34c3, some values to be checked, styling still to be done
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)