diff options
author | nathansmith <nathansmith@posteo.com> | 2025-05-23 07:43:34 -0600 |
---|---|---|
committer | nathansmith <nathansmith@posteo.com> | 2025-05-23 07:43:34 -0600 |
commit | 4e749697600bab526b1cf51bcca493f6d31d2e34 (patch) | |
tree | 10a0274c96667d1482dd7f07d768feaf518d6187 /org/blog/Makefile | |
parent | d194694f31002068868a378d121ed0e2db01c378 (diff) |
Almost done with this stupidness
Diffstat (limited to 'org/blog/Makefile')
-rw-r--r-- | org/blog/Makefile | 10 |
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 |