mirror of
https://github.com/minio/minio.git
synced 2024-12-23 21:55:53 -05:00
Build restructure top level
This commit is contained in:
parent
c2b52590ee
commit
6e4583ef1d
16
Makefile
16
Makefile
@ -8,10 +8,12 @@ getdeps:
|
||||
@go get code.google.com/p/go.tools/cmd/cover && echo "Installing cover"
|
||||
|
||||
build-erasure:
|
||||
@cd pkgs/erasure && ${MAKE} ${MAKE_OPTIONS}
|
||||
@$(MAKE) $(MAKE_OPTIONS) -C pkgs/erasure/isal lib
|
||||
@godep go test -race github.com/minio-io/minio/pkgs/erasure
|
||||
@godep go test -coverprofile=cover.out github.com/minio-io/minio/pkgs/erasure
|
||||
|
||||
build-signify:
|
||||
@cd pkgs/signify && ${MAKE} ${MAKE_OPTIONS}
|
||||
@$(MAKE) $(MAKE_OPTIONS) -C pkgs/signify
|
||||
|
||||
build-split: build-strbyteconv
|
||||
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/split
|
||||
@ -27,13 +29,13 @@ install: build-erasure
|
||||
@godep go install github.com/minio-io/minio/cmd/erasure-demo && echo "Installed erasure-demo into ${GOPATH}/bin"
|
||||
|
||||
save:
|
||||
godep save ./...
|
||||
@godep save ./...
|
||||
|
||||
restore:
|
||||
godep restore
|
||||
@godep restore
|
||||
|
||||
env:
|
||||
godep go env
|
||||
@godep go env
|
||||
|
||||
run: all
|
||||
minio gateway
|
||||
clean:
|
||||
@rm -v cover.out
|
||||
|
@ -1,11 +1,19 @@
|
||||
all: build test
|
||||
.PHONY: all
|
||||
|
||||
test:
|
||||
@godep go test
|
||||
test: test-race test-cover
|
||||
|
||||
test-race:
|
||||
@godep go test -race
|
||||
|
||||
test-cover:
|
||||
@godep go test -coverprofile=cover.out
|
||||
|
||||
isal/isal-l.a:
|
||||
@$(MAKE) --quiet -C isal lib
|
||||
@$(MAKE) -C isal lib
|
||||
|
||||
build: isal/isal-l.a
|
||||
@godep go build
|
||||
|
||||
clean:
|
||||
@rm -v cover.out
|
||||
|
Loading…
Reference in New Issue
Block a user