parent
c2b52590ee
commit
6e4583ef1d
@ -1,11 +1,19 @@ |
|||||||
all: build test |
all: build test |
||||||
.PHONY: all |
.PHONY: all |
||||||
|
|
||||||
test: |
test: test-race test-cover |
||||||
@godep go test
|
|
||||||
|
test-race: |
||||||
|
@godep go test -race
|
||||||
|
|
||||||
|
test-cover: |
||||||
|
@godep go test -coverprofile=cover.out
|
||||||
|
|
||||||
isal/isal-l.a: |
isal/isal-l.a: |
||||||
@$(MAKE) --quiet -C isal lib
|
@$(MAKE) -C isal lib
|
||||||
|
|
||||||
build: isal/isal-l.a |
build: isal/isal-l.a |
||||||
@godep go build
|
@godep go build
|
||||||
|
|
||||||
|
clean: |
||||||
|
@rm -v cover.out
|
||||||
|
Loading…
Reference in new issue