minio/pkgs/erasure/Makefile
Harshavardhana 7314b5e37d Fixes #71 - some crazy races inside erasure and simplify the code
- This change also brings in changing 'unsigned char' to 'uint8_t'
for brevity
2014-12-07 01:33:49 -08:00

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