summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-03 23:18:34 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-03 23:18:34 +0200
commit700b2654cd02d6602bae27ae1bef5dc4290c1efc (patch)
tree4ff407c7b5393ed39a10ede73a5b432303b0bc7b /makefile
parent9c329f0871979023765a34fc92a5a984993898bc (diff)
downloadmetamuffin-website-700b2654cd02d6602bae27ae1bef5dc4290c1efc.tar
metamuffin-website-700b2654cd02d6602bae27ae1bef5dc4290c1efc.tar.bz2
metamuffin-website-700b2654cd02d6602bae27ae1bef5dc4290c1efc.tar.zst
add clean target; fix contact typo
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 $< $@