2014-11-03 23:59:07 -05:00
|
|
|
#GOPATH := $(CURDIR)/tmp/gopath
|
2014-11-30 16:55:10 -05:00
|
|
|
MAKE_OPTIONS := -s
|
2015-01-21 16:52:42 -05:00
|
|
|
ARCH := $(shell uname -s)
|
2014-11-01 18:20:59 -04:00
|
|
|
|
2015-01-14 14:29:04 -05:00
|
|
|
all: getdeps install
|
2014-11-30 16:55:10 -05:00
|
|
|
|
2014-12-04 04:56:01 -05:00
|
|
|
checkdeps:
|
|
|
|
@./checkdeps.sh
|
|
|
|
|
|
|
|
getdeps: checkdeps
|
2014-12-20 12:09:35 -05:00
|
|
|
@go get github.com/tools/godep && echo "Installed godep"
|
|
|
|
@go get golang.org/x/tools/cmd/cover && echo "Installed cover"
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2015-01-14 14:29:04 -05: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
|
2015-01-14 15:40:43 -05:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/split
|
2015-01-21 16:52:42 -05:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/crypto/md5
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/crypto/sha1
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/crypto/sha256
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/crypto/sha512
|
2015-01-22 21:33:35 -05:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/checksum/crc32c
|
2014-12-02 06:17:39 -05:00
|
|
|
|
2015-01-21 16:47:50 -05: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 06:36:07 -05:00
|
|
|
|
2015-01-14 15:40:43 -05:00
|
|
|
build-storage:
|
2015-01-21 18:04:51 -05:00
|
|
|
ifeq ($(ARCH), Darwin)
|
|
|
|
@$(MAKE) $(MAKE_OPTIONS) arch=osx -C pkg/storage/erasure/isal lib
|
|
|
|
else
|
2015-01-14 14:29:04 -05:00
|
|
|
@$(MAKE) $(MAKE_OPTIONS) -C pkg/storage/erasure/isal lib
|
2015-01-21 18:04:51 -05:00
|
|
|
endif
|
2015-01-14 14:29:04 -05:00
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/storage/erasure
|
2014-12-11 03:32:32 -05:00
|
|
|
|
2015-01-21 03:50:23 -05:00
|
|
|
build-minioapi:
|
|
|
|
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/webapi/minioapi
|
|
|
|
|
2015-01-21 16:47:50 -05:00
|
|
|
cover: build-storage build-utils build-minioapi
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2015-01-14 14:29:04 -05:00
|
|
|
install: cover
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2014-12-13 23:27:34 -05:00
|
|
|
save: restore
|
2014-12-01 17:45:50 -05:00
|
|
|
@godep save ./...
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2014-11-03 23:59:07 -05:00
|
|
|
restore:
|
2014-12-01 17:45:50 -05:00
|
|
|
@godep restore
|
2014-11-01 04:02:47 -04:00
|
|
|
|
2014-11-03 23:59:07 -05:00
|
|
|
env:
|
2014-12-01 17:45:50 -05:00
|
|
|
@godep go env
|
2014-11-07 01:45:27 -05:00
|
|
|
|
2014-12-01 17:45:50 -05:00
|
|
|
clean:
|
2015-01-14 15:40:43 -05:00
|
|
|
@echo "Cleaning up all the generated files"
|
2015-01-14 14:53:46 -05:00
|
|
|
@$(MAKE) $(MAKE_OPTIONS) -C pkg/storage/erasure/isal clean
|
2015-01-14 15:40:43 -05:00
|
|
|
@rm -fv pkg/utils/split/TESTPREFIX.*
|
|
|
|
@rm -fv cover.out
|