mirror of https://github.com/minio/minio.git
17 lines
227 B
Makefile
17 lines
227 B
Makefile
|
all: build test
|
||
|
.PHONY: all
|
||
|
|
||
|
test: cauchy vandermonde
|
||
|
|
||
|
cauchy:
|
||
|
@go test -test.run="TestCauchy*"
|
||
|
|
||
|
vandermonde:
|
||
|
@go test -test.run="TestVanderMonde*"
|
||
|
|
||
|
isal/isal-l.so:
|
||
|
@$(MAKE) --quiet -C isal
|
||
|
|
||
|
build: isal/isal-l.so
|
||
|
@go build
|