aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-20 14:21:48 -0400
committerBradley Taunt <bt@btxx.org>2024-07-20 14:21:48 -0400
commitca10d78e63a3caf8b79ac7b73ff483a7150c2683 (patch)
tree4a8a18ff5afd6656c158fe91a63526eab23269de /Makefile
Initial commit. Consider things in alpha and possible to change.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
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