mirror of https://github.com/minio/minio.git
12 lines
138 B
Makefile
12 lines
138 B
Makefile
|
all: build test
|
||
|
.PHONY: all
|
||
|
|
||
|
build:
|
||
|
@godep go build
|
||
|
|
||
|
test: build
|
||
|
@godep go test -race -coverprofile=cover.out
|
||
|
|
||
|
clean:
|
||
|
@rm -v cover.out
|