diff options
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
