From c8ac150b8a7aca83fb984eac0b2619b4daf30071 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 26 Mar 2019 17:27:58 +0100 Subject: Gen png icons from source. Mate: apps, categories & devices clean & build: make -C mate clean-png-icons make -C mate build-png-icons --- mate/256x256/categories/Makefile.am | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 mate/256x256/categories/Makefile.am (limited to 'mate/256x256/categories/Makefile.am') diff --git a/mate/256x256/categories/Makefile.am b/mate/256x256/categories/Makefile.am new file mode 100644 index 0000000..0183966 --- /dev/null +++ b/mate/256x256/categories/Makefile.am @@ -0,0 +1,47 @@ +NULL = + +png_icons = \ + applications-graphics.png \ + applications-internet.png \ + applications-office.png \ + applications-system.png \ + preferences-system.png \ + preferences-system-network.png \ + $(NULL) + +applications-graphics.png: ../../../src/applications-graphics.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:6:278:262 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +applications-internet.png: ../../../src/applications-internet.svg + @echo " "$@ + @inkscape -z $^ --export-area=13:17:269:273 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +applications-office.png: ../../../src/applications-office.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +applications-system.png: ../../../src/applications-system.svg + @echo " "$@ + @inkscape -z $^ --export-area=16:11:272:267 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +preferences-system.png: ../../../src/preferences-system.svg + @echo " "$@ + @inkscape -z $^ --export-area=22:16:278:272 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +preferences-system-network.png: ../../../src/computers.svg + @echo " "$@ + @inkscape -z $^ --export-area=1620:311:1876:567 -w=256 -h=256 -e=$@ 1> /dev/null + @mogrify -quiet -strip $@ + +.PHONY: build-png-icons-local clean-png-icons-local +build-png-icons-local: $(png_icons) + +clean-png-icons-local: + @echo " Cleaning icons..." + @rm -f $(png_icons) -- cgit v1.2.1