go-sleep/makefile
2020-06-16 14:42:36 +00:00

10 lines
153 B
Makefile

all: test build build-windows
build:
cd cmd/sleep && go build
build-windows:
cd cmd/sleep && GOOS=windows GOARCH=amd64 go build
test:
go test ./...