mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
d838151c0c
.svg as an example.
20 lines
475 B
Makefile
20 lines
475 B
Makefile
# -*- mode: Makefile -*-
|
|
|
|
IMG_SRC = ./img_src
|
|
IMG_DEST = res
|
|
|
|
# $(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 -negate -scale 64x64 $< $@
|
|
|
|
$(IMG_DEST)/drawable-mdpi/%__gen.png: $(IMG_SRC)/%.svg
|
|
convert -negate -scale 32x32 $< $@
|
|
|
|
$(IMG_DEST)/drawable-hdpi/%__gen.png: $(IMG_SRC)/%.svg
|
|
convert -negate -scale 48x48 $< $@
|