make Dbg variant's icons upside down

The write-red-on-it thing doesn't work for the notify.png file used in
notifications (I think because I can't find a color Android doesn't
strip out.) So use a rotation transform instead. Users will never see
this anyway.
This commit is contained in:
Eric House 2017-01-07 14:48:31 -08:00
parent 4f30a5be71
commit 449860a880

View file

@ -7,7 +7,10 @@ $(DEST_PATH)/%.java : $(SRC_PATH)/%.java
< $< > $@
$(DEST_PATH)/icon48x48.png : $(SRC_PATH)/icon48x48.png
convert $< -fill red -gravity Center -annotate +0+5 ' Dbg ' $@
convert $< -rotate 180 -gravity Center $@
$(DEST_PATH)/notify.png : $(SRC_PATH)/notify.png
convert $< -rotate 180 -gravity Center $@
$(DEST_PATH)/%.png : $(SRC_PATH)/%.png
@cp $< $@