go-sleep/makefile

16 lines
269 B
Makefile
Raw Normal View History

2020-08-10 19:22:57 +00:00
all: test build
2020-06-16 14:42:36 +00:00
2020-01-20 17:45:19 +00:00
build:
2020-08-10 19:22:57 +00:00
go build ./cmd/sleep/
2020-01-20 17:45:19 +00:00
2020-08-10 19:22:57 +00:00
build-linux-amd64:
GOOS=linux GOARCH=amd64 go build ./cmd/sleep/
build-linux-arm:
GOOS=linux GOARCH=arm go build ./cmd/sleep/
build-windows-amd64:
GOOS=windows GOARCH=amd64 go build ./cmd/sleep/
2020-06-16 14:42:36 +00:00
2020-01-20 17:45:19 +00:00
test:
go test ./...