Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. INK=inkscape
  2. INKFLAGS=--export-area-page
  3.  
  4. # Resolve *.png dependencies
  5. drawable-mdpi/%.png: %.svg
  6. $(INK) $< --export-png=$@ -w 48 -h 48 $(INKFLAGS)
  7.  
  8. drawable-hdpi/%.png: %.svg
  9. $(INK) $< --export-png=$@ -w 72 -h 72 $(INKFLAGS)
  10.  
  11. drawable-xdpi/%.png: %.svg
  12. $(INK) $< --export-png=$@ -w 96 -h 96 $(INKFLAGS)
  13.  
  14. drawable-mdpi/ic_launcher.png: ic_launcher.svg
  15. inkscape ic_launcher.svg --export-png=ic_launcher.png -w 48 -h 48 --export-area-page
  16.  
  17. drawable-hdpi/ic_launcher.png: ic_launcher.svg
  18. inkscape ic_launcher.svg --export-png=ic_launcher.png -w 72 -h 72 --export-area-page
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement