mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
21 lines
517 B
Makefile
21 lines
517 B
Makefile
# -*- mode: Makefile -*-
|
|
|
|
IMG_SRC = ./img_src
|
|
IMG_DEST = res
|
|
PARAMS = -transparent white -negate
|
|
|
|
# $(IMG_DEST)/drawable/%_gen.png:
|
|
# pwd
|
|
# touch $@
|
|
|
|
# $(IMG_DEST)/drawable/%_gen.png: $(IMG_SRC)/%.svg
|
|
# convert -extent 48x48 $< $@
|
|
|
|
$(IMG_DEST)/drawable-xhdpi/%__gen.png: $(IMG_SRC)/%.svg
|
|
convert $(PARAMS) -scale 64x64 $< $@
|
|
|
|
$(IMG_DEST)/drawable-mdpi/%__gen.png: $(IMG_SRC)/%.svg
|
|
convert $(PARAMS) -scale 32x32 $< $@
|
|
|
|
$(IMG_DEST)/drawable-hdpi/%__gen.png: $(IMG_SRC)/%.svg
|
|
convert $(PARAMS) -scale 48x48 $< $@
|