mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-08-03 00:42:32 +08:00
21 lines
424 B
Makefile
Vendored
21 lines
424 B
Makefile
Vendored
SIZES=16 32 64 120 128 200 1024
|
|
|
|
LOGOS=$(addprefix weblate-,$(addsuffix .png,$(SIZES)))
|
|
|
|
JPGS=weblate-1024.jpg
|
|
|
|
STATIC=../weblate/static/weblate-128.png ../weblate/static/weblate-32.png
|
|
|
|
all: $(LOGOS) $(JPGS) $(STATIC)
|
|
|
|
weblate-%.png: weblate.svg
|
|
@./svg2png.sh $< $@ $* $* 16
|
|
|
|
%.jpg: %.png
|
|
convert $< -quality 75 $@
|
|
|
|
weblate-button.png: weblate-button.svg
|
|
@./svg2png.sh $< $@ 250 50 64
|
|
|
|
../weblate/static/%: %
|
|
cp $< $@
|