aboutsummaryrefslogtreecommitdiff
path: root/org/blog/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'org/blog/Makefile')
-rw-r--r--org/blog/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/org/blog/Makefile b/org/blog/Makefile
new file mode 100644
index 0000000..4e13f8c
--- /dev/null
+++ b/org/blog/Makefile
@@ -0,0 +1,10 @@
+.PHONY: all
+all:
+ @echo Generating feed
+ ./generate_feed.scm > feed.xml
+ @echo Generating html
+ ./generate_html.scm > index.html
+
+.PHONY: clean
+clean:
+ rm feed.xml index.html