diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 $< $@ |