mirror of
https://github.com/minio/minio.git
synced 2024-12-31 17:43:21 -05:00
15 lines
184 B
Makefile
15 lines
184 B
Makefile
all: build test
|
|
.PHONY: all
|
|
|
|
test:
|
|
@godep go test -race -coverprofile=cover.out
|
|
|
|
isal/isal-l.a:
|
|
@$(MAKE) -C isal lib
|
|
|
|
build: isal/isal-l.a
|
|
@godep go build
|
|
|
|
clean:
|
|
@rm -v cover.out
|