diff options
author | Bradley Taunt <bt@btxx.org> | 2024-02-02 12:39:46 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-02-02 12:39:46 -0500 |
commit | a27fa0c2e26eb2e30e220fd68cd5ee910474b602 (patch) | |
tree | 25e9d3ba8bbfcdf785f3c5a3e11764de24bacb3a /makefile |
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 9 |
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 . + |