mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
7314b5e37d
- This change also brings in changing 'unsigned char' to 'uint8_t' for brevity
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
|