diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-10 23:23:35 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-10 23:23:35 +0100 |
commit | 92f55cbbe81b7a595e40aedeeb3a57b62011b705 (patch) | |
tree | 31fa44e97d6a1bcc492b2c912ef4d447580fb37f /Makefile | |
parent | b6e6cb61c6e9692e9706b0f27b2ec735218a0722 (diff) | |
download | theos-website-92f55cbbe81b7a595e40aedeeb3a57b62011b705.tar.xz |
Impoer keybase.txt, thunderbird config, robots.txt
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/%: |