diff options
author | dedeibel | 2017-12-14 00:03:40 +0100 |
---|---|---|
committer | dedeibel | 2017-12-14 00:03:40 +0100 |
commit | cbc1055ec5bbce5bdba80bf925489fd95b0b64cd (patch) | |
tree | c49139750150bb8c63923e5b89955e2e884d4b78 /configs/conferences/34c3/assets/Makefile | |
parent | 7d5071ac4bca9a6658786e5ccffc1a35a51c37e1 (diff) |
Initial configuration for 34c3, some values to be checked, styling still to be done
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/34c3/assets/Makefile | 10 |
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) |