diff options
author | EuAndreh <eu@euandre.org> | 2025-04-29 08:58:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-29 08:58:21 -0300 |
commit | 9af59911fc075b714a98a66a623d5a0db4555e2f (patch) | |
tree | db6276dceda43df55ade829cdf93a7e5f977fd1d /Makefile | |
parent | src/symlinks.txt: Add bulk of top of mind compat symlinks (diff) | |
download | euandre.org-9af59911fc075b714a98a66a623d5a0db4555e2f.tar.gz euandre.org-9af59911fc075b714a98a66a623d5a0db4555e2f.tar.xz |
Makefile: Reify $(captured-assets) into variable
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -185,6 +185,11 @@ derived-assets = \ sources.txt \ src/content/.gitignore \ +captured-assets = \ + src/content/$(PUBURL) \ + src/content/favicon.ico \ + src/content/favicon.png \ + side-assets = \ src/collections/*/*/*/*/*.html.*.txt \ src/collections/*/*/*/*/*.html.*.txt.gz \ @@ -207,7 +212,7 @@ side-assets = \ ## Default target. Builds all artifacts required for testing ## and installation. all: $(derived-assets) -all: src/content/$(PUBURL) src/content/favicon.ico src/content/favicon.png +all: $(captured-assets) $(derived-assets): Makefile deps.mk |