diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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/%: |