summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-01-09 08:07:03 -0500
committerSam Anthony <sam@samanthony.xyz>2026-01-09 08:07:03 -0500
commit2ad28cbbfb4287164e7877923291bb18519688fc (patch)
tree7a7dac539d2085cb72cd357246620f7f2021f5e8 /Makefile
parentebf4af075b194229dd1cf3163b1e3cec1f1d3a0d (diff)
downloadsamanthony.xyz-2ad28cbbfb4287164e7877923291bb18519688fc.zip
replace repo contents with revamped site
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a393724..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-build_dev: tidy format
- go build -o devserver
-
-serve_dev: build_dev
- ./devserver --chroot ./ --root /htdocs/ --host localhost
-
-build: tidy format
- GOOS=openbsd GOARCH=amd64 go build -o webserver
-
-live:
- rsync -rtvzP ./htdocs/ sam@samanthony.xyz:/var/www/htdocs/samanthony.xyz/
-
-format:
- gofmt -s -w .
-
-tidy:
- go mod tidy