mirror of
https://github.com/EricNeid/go-sleep.git
synced 2025-01-25 14:36:17 +00:00
10 lines
153 B
Makefile
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 ./...
|