summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-04-29 08:54:52 -0300
committerEuAndreh <eu@euandre.org>2025-04-29 08:54:52 -0300
commit60415e38ac79580321604bb5d9c962a3bf7dcd72 (patch)
tree98ff927f569ecd68bc2a1e8412f30eb49e29112d /Makefile
parentMakefile: Add "check-unit-links" target (diff)
downloadeuandre.org-60415e38ac79580321604bb5d9c962a3bf7dcd72.tar.gz
euandre.org-60415e38ac79580321604bb5d9c962a3bf7dcd72.tar.xz
src/symlinks.txt: Add bulk of top of mind compat symlinks
Diffstat (limited to '')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b75e187..b6420b0 100644
--- a/Makefile
+++ b/Makefile
@@ -99,6 +99,7 @@ sources = \
$(sources.extras) \
$(images.svg) \
src/content/favicon.ico \
+ src/content/favicon.png \
src/content/style.css \
src/content/$(PUBURL) \
@@ -110,6 +111,7 @@ static-contents = \
$(sources.extras) \
$(images.svg) \
src/content/favicon.ico \
+ src/content/favicon.png \
src/content/style.css \
src/content/$(PUBURL) \
src/content/.well-known/security.txt \
@@ -197,6 +199,7 @@ side-assets = \
src/content/css/ \
src/content/favicon/ \
src/content/images/ \
+ src/content/resources/ \
src/content/static/ \
@@ -204,7 +207,7 @@ side-assets = \
## Default target. Builds all artifacts required for testing
## and installation.
all: $(derived-assets)
-all: src/content/$(PUBURL) src/content/favicon.ico
+all: src/content/$(PUBURL) src/content/favicon.ico src/content/favicon.png
$(derived-assets): Makefile deps.mk
@@ -265,6 +268,9 @@ src/content/favicon.ico.gz: src/content/favicon.ico
src/content/favicon.ico: src/content/img/favicon.svg
convert src/content/img/favicon.svg $@
+src/content/favicon.png: src/content/img/favicon.svg
+ convert src/content/img/favicon.svg $@
+
email.txt: meta.json
jq -r '.email' < meta.json > $@
@@ -350,6 +356,7 @@ check-unit-links-external:
symlink-deps = \
$(sources.html) \
$(feeds.xml) \
+ $(categories.xml) \
src/content/.well-known/security.txt \
check-unit-symlinks: src/all-symlinks.txt $(symlink-deps)