minio/Makefile

55 lines
1.8 KiB
Makefile
Raw Normal View History

#GOPATH := $(CURDIR)/tmp/gopath
2014-11-30 13:55:10 -08:00
MAKE_OPTIONS := -s
2015-01-21 13:52:42 -08:00
ARCH := $(shell uname -s)
2014-11-01 15:20:59 -07: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"
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 12:40:43 -08:00
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/split
2015-01-21 13:52:42 -08: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
ifeq ($(ARCH), Linux)
2015-01-14 12:40:43 -08:00
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/utils/checksum/crc32c
2015-01-21 13:52:42 -08:00
endif
#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 12:40:43 -08:00
build-storage:
@$(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-11 00:32:32 -08:00
2015-01-21 00:50:23 -08:00
build-minioapi:
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkg/webapi/minioapi
cover: build-storage build-utils build-minioapi
install: cover
save: restore
2014-12-01 14:45:50 -08:00
@godep save ./...
restore:
2014-12-01 14:45:50 -08:00
@godep restore
2014-11-01 04:02:47 -04:00
env:
2014-12-01 14:45:50 -08:00
@godep go env
2014-12-01 14:45:50 -08:00
clean:
2015-01-14 12:40:43 -08:00
@echo "Cleaning up all the generated files"
2015-01-14 11:53:46 -08:00
@$(MAKE) $(MAKE_OPTIONS) -C pkg/storage/erasure/isal clean
2015-01-14 12:40:43 -08:00
@rm -fv pkg/utils/split/TESTPREFIX.*
@rm -fv cover.out