diff options
author | EuAndreh <eu@euandre.org> | 2022-04-12 14:06:23 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-04-12 14:06:23 -0300 |
commit | b29a2ca64a3d0536986693b6ad54b7aea8be7330 (patch) | |
tree | f4f06a2ef5fa9b5e16013cd08117a75f5d223e7c /Makefile | |
parent | _config.yml: Explicitly include .well-known/ directory (diff) | |
download | euandre.org-b29a2ca64a3d0536986693b6ad54b7aea8be7330.tar.gz euandre.org-b29a2ca64a3d0536986693b6ad54b7aea8be7330.tar.xz |
Rename favicon to lord-favicon
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -25,7 +25,7 @@ lilypond = \ $(lilypond.midi) \ $(lilypond.ogg) -favicons = static/favicon.png favicon.ico +favicons = static/lord-favicon.png static/lord-favicon.ico favicon.ico podcasts.flac = \ resources/podcasts/2020-12-19-a-test-entry.flac @@ -70,11 +70,15 @@ deps.mk: torrent-files.txt $(torrents): files.mk deps.mk $(MAKE) -f dynamic.mk torrents -static/favicon.png: static/favicon.svg - inkscape -o $@ -w 2048 -h 2048 -b white static/favicon.svg +static/lord-favicon.png: static/lord-favicon.svg + inkscape -o $@ -w 2048 -h 2048 -b white static/lord-favicon.svg + +static/lord-favicon.ico: static/lord-favicon.svg + convert static/lord-favicon.svg $@ + +favicon.ico: static/lord-favicon.ico + ln -fs static/lord-favicon.ico $@ -favicon.ico: static/favicon.svg - convert static/favicon.svg $@ |