sdfhomeproxy/Makefile

16 lines
203 B
Makefile
Raw Normal View History

2023-01-13 08:59:13 -05:00
.PHONY: test build deploy
GOOS := plan9
GOARCH := amd64
test:
go test -v
build: test
GOOS=$(GOOS) GOARCH=$(GOARCH) \
go build server.go
deploy: build
rsync -avz server iceland.sdf.org:html/pub/
2023-02-10 18:14:33 -05:00