aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-02-02 12:39:46 -0500
committerBradley Taunt <bt@btxx.org>2024-02-02 12:39:46 -0500
commita27fa0c2e26eb2e30e220fd68cd5ee910474b602 (patch)
tree25e9d3ba8bbfcdf785f3c5a3e11764de24bacb3a /makefile
Initial commit to new cgit platformHEADmaster
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..f8fc793
--- /dev/null
+++ b/makefile
@@ -0,0 +1,9 @@
+.DEFAULT: build
+
+.PHONY: build
+build:
+ ./script.sh > feed.xml
+
+serve: build
+ python3 -m http.server --directory .
+