commit cc43a7ebbe44a1e9646a8975733741591d7ee19c
parent d45eee2892c7c579bbf1adf292ef90b9aade9b06
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Wed, 30 Dec 2020 19:31:38 +0100
Fixup Makefile
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -1,4 +1,4 @@
-pages_src = $(wildcard *.html)
+pages_src = $(filter-out template.html,$(wildcard *.html))
pages = $(foreach p,$(pages_src),public/$(p))
sheets = $(wildcard *.css)
@@ -24,4 +24,4 @@ $(pages): public/%.html: %.html | public
./build.sh $< $@
clean:
- rm -r public
+ -rm -r public