diff options
Diffstat (limited to 'mate/22x22/apps/Makefile.am')
-rw-r--r-- | mate/22x22/apps/Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mate/22x22/apps/Makefile.am b/mate/22x22/apps/Makefile.am new file mode 100644 index 0000000..ebc0d74 --- /dev/null +++ b/mate/22x22/apps/Makefile.am @@ -0,0 +1,20 @@ +NULL = + +png_icons = \ + utilities-system-monitor.png \ + utilities-terminal.png \ + $(NULL) + +utilities-system-monitor.png: ../../../src/terminals.svg + inkscape -z $^ --export-area=703:100:725:122 -w=22 -h=22 -e=$@ + +utilities-terminal.png: ../../../src/terminals.svg + inkscape -z $^ --export-area=303:100:325:122 -w=22 -h=22 -e=$@ + +.PHONY: build-icons-local clean-icons-local +build-png-icons-local: $(png_icons) + @echo Building icons... + +clean-png-icons-local: + @echo Cleaning icons... + rm -f $(png_icons) |