diff options
author | EuAndreh <eu@euandre.org> | 2025-04-04 18:03:04 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-04 18:09:55 -0300 |
commit | 1e777afbc8f3010ab1e7351308a6146a6e18fa87 (patch) | |
tree | 53ede9ce1c7ddb8c5a3af15bae7049f13590def6 /Makefile | |
parent | Makefile: Add public.asc to output dir (diff) | |
download | euandre.org-1e777afbc8f3010ab1e7351308a6146a6e18fa87.tar.gz euandre.org-1e777afbc8f3010ab1e7351308a6146a6e18fa87.tar.xz |
src/content/favicon.ico: Add refresheable rule in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -90,6 +90,7 @@ dynamic-contents = \ static-contents = \ $(sources.extras) \ $(images.svg) \ + src/content/favicon.ico \ src/content/style.css \ src/content/$(PUBURL) \ src/content/.well-known/security.txt \ @@ -98,6 +99,7 @@ dynamic-contents.gz = $(dynamic-contents:=.gz) static-contents.gz = \ $(images.svg:=.gz) \ + src/content/favicon.ico.gz \ src/content/style.css.gz \ src/content/$(PUBURL).gz \ src/content/.well-known/security.txt.gz \ @@ -165,7 +167,7 @@ side-assets = \ ## Default target. Builds all artifacts required for testing ## and installation. all: $(derived-assets) -all: src/content/$(PUBURL) +all: src/content/$(PUBURL) src/content/favicon.ico $(derived-assets): Makefile deps.mk @@ -202,6 +204,9 @@ $(sources.snippets.gz): src/content/$(PUBURL): gpg --export --armour "`jq -r '.email' < meta.json`" > $@ +src/content/favicon.ico: src/content/img/favicon.svg + convert src/content/img/favicon.svg $@ + email.txt: meta.json jq -r '.email' < meta.json > $@ |