cirandas.net

ref: master

public/images/control-panel/Makefile


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
PNGS = $(patsubst %.svg, %.png, $(wildcard *.svg))
GIFS = $(patsubst %.svg, %.gif, $(wildcard *.svg))

%.png: %.svg
	inkscape -w 48 -h 48 -e $@ $<

%.gif : %.png
	convert $< $@

all: $(GIFS) $(PNGS)

clean:
	rm -f $(GIFS) $(PNGS)