summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile
index 820adad..6ed3114 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,10 @@
HTML = $(patsubst %.md,%.html,$(shell find -name '*.md'))
+.PHONY: all clean
all: $(HTML)
+clean:
+ rm -vf $(HTML)
%.html: %.md process.py template.html
python process.py $< $@