diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4,7 +4,7 @@ RESOURCES := glider.png PARTIALS := $(addprefix partials/, meta.html nav.html footer.html) -FILES := $(HTML) $(CSS) pgp-key.txt \ +FILES := $(HTML) $(CSS) sitemap.xml pgp-key.txt \ $(addprefix resources/, $(RESOURCES)) site: $(addprefix build/, $(FILES)) @@ -24,6 +24,10 @@ build/resources/%: resources/% @install -Dm644 $< $@ @echo Compiled $< → $@ +build/sitemap.xml: src/sitemap.xml + @install -Dm644 $< $@ + @echo Compiled $< → $@ + build/pgp-key.txt: src/pgp-key.txt @install -Dm644 $< $@ @echo Compiled $< → $@ |