summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
-rw-r--r--src/content/favicon.icobin0 -> 1150 bytes
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b784b25..0f8f756 100644
--- a/Makefile
+++ b/Makefile
@@ -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 > $@
diff --git a/src/content/favicon.ico b/src/content/favicon.ico
new file mode 100644
index 0000000..8f2130a
--- /dev/null
+++ b/src/content/favicon.ico
Binary files differ