mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
12 lines
160 B
Makefile
12 lines
160 B
Makefile
all: build test
|
|
.PHONY: all
|
|
|
|
build:
|
|
@godep go build
|
|
|
|
test: build
|
|
@godep go test -race -coverprofile=cover.out
|
|
|
|
clean:
|
|
@rm -fv NEWFILE TESTPREFIX.* cover.out
|