16 lines
261 B
Makefile
16 lines
261 B
Makefile
|
.PHONY: test build deploy
|
||
|
|
||
|
GOOS := plan9
|
||
|
GOARCH := amd64
|
||
|
|
||
|
test:
|
||
|
SDF_PROXY_ALLOWED_HOSTS=teapot-dummy-target.example.com \
|
||
|
go test -v
|
||
|
|
||
|
build: test
|
||
|
GOOS=$(GOOS) GOARCH=$(GOARCH) \
|
||
|
go build server.go
|
||
|
|
||
|
deploy: build
|
||
|
rsync -avz server iceland.sdf.org:html/pub/
|