2014-11-03 20:59:07 -08:00
|
|
|
#GOPATH := $(CURDIR)/tmp/gopath
|
2014-11-30 13:55:10 -08:00
|
|
|
MAKE_OPTIONS := -s
|
2014-11-01 15:20:59 -07:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
all: getdeps install
|
2014-11-30 13:55:10 -08:00
|
|
|
|
2014-12-04 01:56:01 -08:00
|
|
|
checkdeps:
|
|
|
|
@./checkdeps.sh
|
|
|
|
|
|
|
|
getdeps: checkdeps
|
2014-12-20 09:09:35 -08:00
|
|
|
@go get github.com/tools/godep && echo "Installed godep"
|
|
|
|
@go get golang.org/x/tools/cmd/cover && echo "Installed cover"
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-utils:
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/cpu
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/unitconv
|
2014-12-08 03:20:35 -08:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-crypto:
|
2014-12-29 16:35:56 -08:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/crypto/md5/
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/crypto/sha1/
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/crypto/sha256/
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/crypto/sha512/
|
2014-12-21 13:40:09 +13:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-checksum:
|
2014-12-29 16:35:56 -08:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/checksum/crc32c
|
2014-12-02 03:17:39 -08:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-os:
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/os/scsi
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/os/sysctl
|
2014-12-17 03:36:07 -08:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-fileutils: build-utils
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/fileutils/split
|
2014-12-01 10:40:50 -08:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-storage: build-erasure build-storage-append build-storage-encoded
|
2014-11-18 02:09:50 -08:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
build-erasure:
|
|
|
|
@$(MAKE) $(MAKE_OPTIONS) -C pkg/storage/erasure/isal lib
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/storage/erasure
|
2014-12-10 17:43:16 -08:00
|
|
|
|
|
|
|
build-storage-append:
|
2014-12-29 16:35:56 -08:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/storage/appendstorage
|
2014-12-10 17:43:16 -08:00
|
|
|
|
2014-12-11 00:32:32 -08:00
|
|
|
build-storage-encoded:
|
2014-12-29 16:35:56 -08:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/storage/encodedstorage
|
2014-12-11 00:32:32 -08:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
cover: build-fileutils build-checksum build-os build-storage build-crypto
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2015-01-14 11:29:04 -08:00
|
|
|
install: cover
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2014-12-13 20:27:34 -08:00
|
|
|
save: restore
|
2014-12-01 14:45:50 -08:00
|
|
|
@godep save ./...
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2014-11-03 20:59:07 -08:00
|
|
|
restore:
|
2014-12-01 14:45:50 -08:00
|
|
|
@godep restore
|
2014-11-01 04:02:47 -04:00
|
|
|
|
2014-11-03 20:59:07 -08:00
|
|
|
env:
|
2014-12-01 14:45:50 -08:00
|
|
|
@godep go env
|
2014-11-06 22:45:27 -08:00
|
|
|
|
2014-12-01 14:45:50 -08:00
|
|
|
clean:
|
2015-01-14 11:53:46 -08:00
|
|
|
@$(MAKE) $(MAKE_OPTIONS) -C pkg/storage/erasure/isal clean
|
2014-12-01 14:45:50 -08:00
|
|
|
@rm -v cover.out
|