aboutsummaryrefslogtreecommitdiff
path: root/blog/Makefile
diff options
context:
space:
mode:
authornathansmith <nathansmith@posteo.com>2025-05-07 07:52:20 -0600
committernathansmith <nathansmith@posteo.com>2025-05-07 07:52:20 -0600
commitad77b98eb20b1abec23940a14512e07255b222ef (patch)
tree09dc1a085860259a7fea29fe1f6ccddad11874eb /blog/Makefile
parentdcaff06b3c7470e1ec3cf878d9322e589703cbd5 (diff)
Switching over to guile
Diffstat (limited to 'blog/Makefile')
-rw-r--r--blog/Makefile10
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