arlo-go/Makefile

13 lines
92 B
Makefile
Raw Normal View History

2019-12-01 15:34:44 +00:00
all: test build
build:
go build -v ./...
test:
go test -v ./...
clean:
go clean