arlo-go/Makefile
2019-12-01 09:34:44 -06:00

13 lines
92 B
Makefile

all: test build
build:
go build -v ./...
test:
go test -v ./...
clean:
go clean