diff options
author | Bradley Taunt <bt@btxx.org> | 2024-07-20 14:21:48 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-07-20 14:21:48 -0400 |
commit | ca10d78e63a3caf8b79ac7b73ff483a7150c2683 (patch) | |
tree | 4a8a18ff5afd6656c158fe91a63526eab23269de /Makefile |
Initial commit. Consider things in alpha and possible to change.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b4d62f6 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +build: + rm -rf build && mkdir build + ruby blog.rb + +clean: + rm -rf build/* + +.PHONY: build clean |