arlo-go/Makefile

13 lines
92 B
Makefile
Raw Normal View History

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