2020-06-15 19:04:19 +01:00
|
|
|
usage:
|
|
|
|
echo "See Makefile"
|
|
|
|
|
2020-08-25 05:35:27 +01:00
|
|
|
vet:
|
|
|
|
go vet ./...
|
|
|
|
|
2020-09-09 20:17:44 +01:00
|
|
|
updatedeps:
|
|
|
|
go run github.com/tailscale/depaware --update tailscale.com/cmd/tailscaled
|
|
|
|
go run github.com/tailscale/depaware --update tailscale.com/cmd/tailscale
|
|
|
|
|
|
|
|
depaware:
|
|
|
|
go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscaled
|
|
|
|
go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscale
|
|
|
|
|
2021-02-28 05:42:34 +00:00
|
|
|
buildwindows:
|
|
|
|
GOOS=windows GOARCH=amd64 go install tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled
|
|
|
|
|
|
|
|
check: staticcheck vet depaware buildwindows
|
2020-06-15 19:04:19 +01:00
|
|
|
|
|
|
|
staticcheck:
|
|
|
|
go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)
|