summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 32b2e6d..7fdff76 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,11 @@ HTML := index.html
CSS := style.css
PARTIALS := $(addprefix partials/, meta.html nav.html footer.html)
+WELLKNOWN := $(addprefix .well-known/, keybase.txt)
FILES := $(HTML) $(CSS) sitemap.xml
-site: $(addprefix build/, $(FILES))
+site: $(addprefix build/, $(FILES) $(WELLKNOWN))
clean:
-rm $(addprefix build/, $(FILES))
@@ -22,4 +23,8 @@ build/sitemap.xml: src/sitemap.xml
@install -Dm644 $< $@
@echo Compiled $< → $@
+build/.well-known/%: .well-known/%
+ @install -Dm644 $< $@
+ @echo Compiled $< → $@
+
partials/%: