diff options
author | Lukas Schauer | 2021-04-06 19:54:16 +0200 |
---|---|---|
committer | Lukas Schauer | 2021-04-06 19:54:16 +0200 |
commit | d3c805518a0a0349f56288559254f3107cf5e96c (patch) | |
tree | d8fc917c02ba1e4431469fc81c23e726d3ad5015 /configs/archive/35c3/assets/Makefile | |
parent | 58a6e71c844ae16502fd996859b14a6e25b838ee (diff) |
archive some older conferences
Diffstat (limited to 'configs/archive/35c3/assets/Makefile')
-rw-r--r-- | configs/archive/35c3/assets/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configs/archive/35c3/assets/Makefile b/configs/archive/35c3/assets/Makefile new file mode 100644 index 0000000..51392b6 --- /dev/null +++ b/configs/archive/35c3/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 -f $(MINSVGS) |