mirror of
https://github.com/minio/minio.git
synced 2024-12-25 06:35:56 -05:00
1e7515a7df
- move contrib/erasure --> contrib/isal - bring in low level 'isal' package for Go for exposing C functions - Implement Erasure 'encoding' Supports - Reed Solomon Codes, Cauchy Codes - Implement Erasure 'decoding' Supports - Reed Solomon Codes, Cauchy Codes - Renames Minios -> Minio at all the references
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
|