diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-02 19:14:17 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-02 19:14:17 +0200 |
commit | 23871d5aadcaa4d01b7c46cb951854572940414d (patch) | |
tree | 9a3f0490675642a5b76bdda8f44f2e75b469046c /makefile | |
parent | fbc308f96dca2854bc462e6fee412b5dc35b6c3c (diff) | |
download | metamuffin-website-23871d5aadcaa4d01b7c46cb951854572940414d.tar metamuffin-website-23871d5aadcaa4d01b7c46cb951854572940414d.tar.bz2 metamuffin-website-23871d5aadcaa4d01b7c46cb951854572940414d.tar.zst |
Rewrite
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..820adad --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ + +HTML = $(patsubst %.md,%.html,$(shell find -name '*.md')) + +all: $(HTML) + +%.html: %.md process.py template.html + python process.py $< $@ |