summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a393724865ed6c0f66eb608d6a6377552e0b187e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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