2015-11-07 07:55:02 +00:00
LDFLAGS := $( shell go run buildscripts/gen-ldflags.go)
2016-01-15 18:28:52 +00:00
DOCKER_BIN := $( shell which docker)
2015-11-08 10:56:19 +00:00
DOCKER_LDFLAGS := '$(LDFLAGS) -extldflags "-static"'
BUILD_LDFLAGS := '$(LDFLAGS)'
2015-11-07 07:55:02 +00:00
TAG := latest
2016-02-05 00:00:52 +00:00
UI_ASSETS := ui-assets.go
UI_ASSETS_ARMOR := ui-assets.asc
2015-11-02 10:11:34 +00:00
2015-08-20 20:05:47 +00:00
all : install
2014-11-30 21:55:10 +00:00
2014-12-04 09:56:01 +00:00
checkdeps :
2015-03-26 06:10:03 +00:00
@echo "Checking deps:"
2015-02-22 05:38:04 +00:00
@( env bash $( PWD) /buildscripts/checkdeps.sh)
2014-12-04 09:56:01 +00:00
2015-02-18 22:35:49 +00:00
checkgopath :
2015-04-12 00:31:01 +00:00
@echo " Checking if project is at ${ GOPATH } "
2015-10-17 22:03:46 +00:00
@for miniopath in $( echo ${ GOPATH } | sed 's/:/\n/g' ) ; do if [ ! -d ${ miniopath } /src/github.com/minio/minio ] ; then echo " Project not found in ${ miniopath } , please follow instructions provided at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository " && exit 1; fi done
2015-11-08 10:56:19 +00:00
@echo " Setting BUILD_LDFLAGS: ${ BUILD_LDFLAGS } "
2015-02-02 05:18:46 +00:00
2016-01-15 18:28:52 +00:00
checkdocker :
@echo "Checking if docker is installed.. "
@if [ -z ${ DOCKER_BIN } ] ; then echo "Docker not installed, cannot build docker image. Please install 'sudo apt-get install docker.io'" && exit 1; else echo " Docker installed at ${ DOCKER_BIN } . " ; fi ;
2015-02-18 22:35:49 +00:00
getdeps : checkdeps checkgopath
2015-10-26 09:36:01 +00:00
@go get -u github.com/golang/lint/golint && echo "Installed golint:"
@go get -u golang.org/x/tools/cmd/vet && echo "Installed vet:"
@go get -u github.com/fzipp/gocyclo && echo "Installed gocyclo:"
2015-10-16 18:26:01 +00:00
@go get -u github.com/remyoudompheng/go-misc/deadcode && echo "Installed deadcode:"
2016-02-10 05:51:03 +00:00
@go get -u github.com/client9/misspell/cmd/misspell && echo "Installed misspell:"
2015-03-09 23:15:06 +00:00
2016-02-05 00:00:52 +00:00
$(UI_ASSETS) :
2016-02-11 00:04:01 +00:00
@curl -s https://dl.minio.io/assets/server/ui/$( UI_ASSETS_ARMOR) 2>& 1 > $( UI_ASSETS_ARMOR) && echo " Downloading signature file $( UI_ASSETS_ARMOR) for verification: "
2016-02-05 00:00:52 +00:00
@gpg --batch --no-tty --yes --keyserver pgp.mit.edu --recv-keys F9AAC728 2>& 1 > /dev/null && echo "Importing public key:"
2016-02-11 00:04:01 +00:00
@curl -s https://dl.minio.io/assets/server/ui/$@ 2>& 1 > $@ && echo " Downloading UI assets file $@ : "
2016-02-05 00:00:52 +00:00
@gpg --batch --no-tty --verify $( UI_ASSETS_ARMOR) $@ 2>& 1 > /dev/null && echo "Verifying signature of downloaded assets."
2016-02-10 05:51:03 +00:00
verifiers : getdeps vet fmt lint cyclo spelling
2015-03-09 23:15:06 +00:00
vet :
2015-03-26 05:51:19 +00:00
@echo " Running $@ : "
2015-09-09 22:11:37 +00:00
@GO15VENDOREXPERIMENT= 1 go tool vet -all *.go
@GO15VENDOREXPERIMENT= 1 go tool vet -all ./pkg
@GO15VENDOREXPERIMENT= 1 go tool vet -shadow= true *.go
@GO15VENDOREXPERIMENT= 1 go tool vet -shadow= true ./pkg
2015-08-23 01:34:00 +00:00
2015-03-09 23:15:06 +00:00
fmt :
2015-03-26 05:51:19 +00:00
@echo " Running $@ : "
2015-08-23 01:34:00 +00:00
@GO15VENDOREXPERIMENT= 1 gofmt -s -l *.go
@GO15VENDOREXPERIMENT= 1 gofmt -s -l pkg
2015-08-13 02:24:31 +00:00
2015-03-09 23:15:06 +00:00
lint :
2015-03-26 05:51:19 +00:00
@echo " Running $@ : "
2016-01-20 09:16:12 +00:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/golint *.go
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/golint github.com/minio/minio/pkg...
2015-03-09 23:15:06 +00:00
2015-03-25 22:49:42 +00:00
cyclo :
2015-03-26 05:51:19 +00:00
@echo " Running $@ : "
2016-01-20 09:16:12 +00:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/gocyclo -over 65 pkg
2015-03-25 22:49:42 +00:00
2016-02-05 00:00:52 +00:00
build : getdeps verifiers $( UI_ASSETS )
2015-10-26 09:36:01 +00:00
@echo "Installing minio:"
deadcode :
2016-02-10 05:51:03 +00:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/deadcode
spelling :
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/misspell *.go
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/misspell pkg/**/*
2015-09-18 05:10:09 +00:00
test : build
@echo "Running all testing:"
2015-09-19 07:52:01 +00:00
@GO15VENDOREXPERIMENT= 1 go test $( GOFLAGS) .
2015-09-18 05:10:09 +00:00
@GO15VENDOREXPERIMENT= 1 go test $( GOFLAGS) github.com/minio/minio/pkg...
2015-01-21 08:50:23 +00:00
2015-08-01 00:03:34 +00:00
gomake-all : build
2015-11-08 10:56:19 +00:00
@GO15VENDOREXPERIMENT= 1 go build --ldflags $( BUILD_LDFLAGS) -o $( GOPATH) /bin/minio
2014-11-02 00:04:24 +00:00
2015-08-23 05:23:36 +00:00
pkg-add :
2016-02-10 05:51:03 +00:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/govendor add $( PKG)
2015-08-23 05:23:36 +00:00
2015-10-24 02:29:44 +00:00
pkg-update :
2016-02-10 05:51:03 +00:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/govendor update $( PKG)
2015-10-24 02:29:44 +00:00
pkg-remove :
2016-02-10 05:51:03 +00:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/govendor remove $( PKG)
2015-10-24 02:29:44 +00:00
2015-06-17 03:20:59 +00:00
install : gomake -all
2014-11-02 00:04:24 +00:00
2016-02-05 02:19:49 +00:00
dockerimage : checkdocker verifiers $( UI_ASSETS )
2015-11-07 00:46:04 +00:00
@echo "Building docker image:" minio:$( TAG)
2015-11-08 10:56:19 +00:00
@GO15VENDOREXPERIMENT= 1 go build --ldflags $( DOCKER_LDFLAGS) -o minio.dockerimage
2015-11-07 00:46:04 +00:00
@mkdir -p export
2015-11-28 20:10:13 +00:00
@sudo docker build --rm --tag= minio/minio:$( TAG) .
2015-11-07 00:46:04 +00:00
@rmdir export
@rm minio.dockerimage
2015-12-02 18:50:54 +00:00
release :
@./release.sh
2014-12-01 22:45:50 +00:00
clean :
2015-03-26 05:51:19 +00:00
@echo "Cleaning up all the generated files:"
2015-01-14 20:40:43 +00:00
@rm -fv cover.out
2015-04-29 04:24:59 +00:00
@rm -fv minio
2015-10-17 22:03:46 +00:00
@rm -fv minio.test
@rm -fv pkg/fs/fs.test
2016-02-07 18:55:51 +00:00
@rm -fv ui-assets.go
@rm -fv ui-assets.asc