diff options
author | Adin Scannell <ascannell@google.com> | 2019-04-05 00:14:59 -0400 |
---|---|---|
committer | Adin Scannell <adin@scannell.ca> | 2019-04-04 21:50:53 -0700 |
commit | c1c59764f965eefca6ad45d897d09d14348febef (patch) | |
tree | e5dabda81b395c6bbff11cdf0b337d0f8e627c08 /assets/logos/Makefile | |
parent | 8f8fc33a874b16d529dfacecdd6b34a42c98d514 (diff) |
Update assets and favicons
Diffstat (limited to 'assets/logos/Makefile')
-rw-r--r-- | assets/logos/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/assets/logos/Makefile b/assets/logos/Makefile index a4c5dc9d9..49289ecc1 100644 --- a/assets/logos/Makefile +++ b/assets/logos/Makefile @@ -6,5 +6,8 @@ dsts := $(patsubst %.svg,%.png,$(srcs)) all: $(dsts) .PHONY: all -%.png: %.svg - @inkscape -z -e $@ $< +%.png %-16.png %-128.png %-1024.png: %.svg + @inkscape -z -e $*.png $< + @inkscape -z -w 16 -e $*-16.png $< + @inkscape -z -w 128 -e $*-128.png $< + @inkscape -z -w 1024 -e $*-1024.png $< |