diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-03 23:18:34 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-03 23:18:34 +0200 |
commit | 700b2654cd02d6602bae27ae1bef5dc4290c1efc (patch) | |
tree | 4ff407c7b5393ed39a10ede73a5b432303b0bc7b | |
parent | 9c329f0871979023765a34fc92a5a984993898bc (diff) | |
download | metamuffin-website-700b2654cd02d6602bae27ae1bef5dc4290c1efc.tar metamuffin-website-700b2654cd02d6602bae27ae1bef5dc4290c1efc.tar.bz2 metamuffin-website-700b2654cd02d6602bae27ae1bef5dc4290c1efc.tar.zst |
add clean target; fix contact typo
-rw-r--r-- | contact.md | 5 | ||||
-rw-r--r-- | makefile | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,9 +1,10 @@ -# Conact +# Contact You can reach out to me in a bunch of ways. Don't hesitate to contact me for any kind of reason! - matrix: [@metamuffin:metamuffin.org](//matrix.to/#/@metamuffin:metamuffin.org) -- fedi: [@metamuffin@social.metamuffin.org](//social.metamuffin.org/@metamuffin) +- fediverse: + [@metamuffin@social.metamuffin.org](//social.metamuffin.org/@metamuffin) - electronic mail: [metamuffin@disroot.org](mailto:metamuffin@disroot.org) - telepathy: come on, just try hard enough @@ -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 $< $@ |