diff options
Diffstat (limited to 'icons/Makefile')
-rw-r--r-- | icons/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icons/Makefile b/icons/Makefile index 122a3bc..f6940a5 100644 --- a/icons/Makefile +++ b/icons/Makefile @@ -8,7 +8,7 @@ png_targets = $(svg_targets:%.svg=%.png) png: $(png_targets) $(png_targets): %.png : %.svg - inkscape --export-png=$@ $< + inkscape -h 32 -w 32 --export-background=white --export-background-opacity=.5 --export-png=$@ $< pdf: $(pdf_targets) @@ -20,5 +20,5 @@ clean: real_clean: clean - rm -f $(pdf_targets) + rm -f $(pdf_targets) $(png_targets) |