diff options
author | nathansmith <nathansmith@posteo.com> | 2025-05-07 07:52:20 -0600 |
---|---|---|
committer | nathansmith <nathansmith@posteo.com> | 2025-05-07 07:52:20 -0600 |
commit | ad77b98eb20b1abec23940a14512e07255b222ef (patch) | |
tree | 09dc1a085860259a7fea29fe1f6ccddad11874eb /blog/Makefile | |
parent | dcaff06b3c7470e1ec3cf878d9322e589703cbd5 (diff) |
Switching over to guile
Diffstat (limited to 'blog/Makefile')
-rw-r--r-- | blog/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/blog/Makefile b/blog/Makefile new file mode 100644 index 0000000..3b3341e --- /dev/null +++ b/blog/Makefile @@ -0,0 +1,10 @@ +.PHONY: all +all: + @echo Generating feed + ./generate_feed.scm > feed.xml + @echo Generating html + ./generate_html.py > index.html + +.PHONY: clean +clean: + rm feed.rss index.html |