2015-11-07 02:55:02 -05:00
LDFLAGS := $( shell go run buildscripts/gen-ldflags.go)
2016-01-15 13:28:52 -05:00
DOCKER_BIN := $( shell which docker)
2015-11-08 05:56:19 -05:00
DOCKER_LDFLAGS := '$(LDFLAGS) -extldflags "-static"'
BUILD_LDFLAGS := '$(LDFLAGS)'
2015-11-07 02:55:02 -05:00
TAG := latest
2016-02-04 19:00:52 -05:00
UI_ASSETS := ui-assets.go
UI_ASSETS_ARMOR := ui-assets.asc
2015-11-02 05:11:34 -05:00
2015-08-20 16:05:47 -04:00
all : install
2014-11-30 16:55:10 -05:00
2014-12-04 04:56:01 -05:00
checkdeps :
2015-03-26 02:10:03 -04:00
@echo "Checking deps:"
2015-02-22 00:38:04 -05:00
@( env bash $( PWD) /buildscripts/checkdeps.sh)
2014-12-04 04:56:01 -05:00
2015-02-18 17:35:49 -05:00
checkgopath :
2015-04-11 20:31:01 -04:00
@echo " Checking if project is at ${ GOPATH } "
2015-10-17 18:03:46 -04: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 05:56:19 -05:00
@echo " Setting BUILD_LDFLAGS: ${ BUILD_LDFLAGS } "
2015-02-02 00:18:46 -05:00
2016-01-15 13:28:52 -05: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 17:35:49 -05:00
getdeps : checkdeps checkgopath
2015-10-26 05:36:01 -04: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 14:26:01 -04:00
@go get -u github.com/remyoudompheng/go-misc/deadcode && echo "Installed deadcode:"
2015-03-09 19:15:06 -04:00
2016-02-04 19:00:52 -05:00
$(UI_ASSETS) :
@curl -s https://dl.minio.io/assets/server/$( UI_ASSETS_ARMOR) 2>& 1 > $( UI_ASSETS_ARMOR) && echo " Downloading signature file $( UI_ASSETS_ARMOR) for verification: "
@gpg --batch --no-tty --yes --keyserver pgp.mit.edu --recv-keys F9AAC728 2>& 1 > /dev/null && echo "Importing public key:"
@curl -s https://dl.minio.io/assets/server/$@ 2>& 1 > $@ && echo " Downloading UI assets file $@ : "
@gpg --batch --no-tty --verify $( UI_ASSETS_ARMOR) $@ 2>& 1 > /dev/null && echo "Verifying signature of downloaded assets."
2015-03-25 18:49:42 -04:00
verifiers : getdeps vet fmt lint cyclo
2015-03-09 19:15:06 -04:00
vet :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2015-09-09 18:11:37 -04: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-22 21:34:00 -04:00
2015-03-09 19:15:06 -04:00
fmt :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2015-08-22 21:34:00 -04:00
@GO15VENDOREXPERIMENT= 1 gofmt -s -l *.go
@GO15VENDOREXPERIMENT= 1 gofmt -s -l pkg
2015-08-12 22:24:31 -04:00
2015-03-09 19:15:06 -04:00
lint :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2016-01-20 04:16:12 -05:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/golint *.go
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/golint github.com/minio/minio/pkg...
2015-03-09 19:15:06 -04:00
2015-03-25 18:49:42 -04:00
cyclo :
2015-03-26 01:51:19 -04:00
@echo " Running $@ : "
2016-01-20 04:16:12 -05:00
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT= 1 ${ GOPATH } /bin/gocyclo -over 65 pkg
2015-03-25 18:49:42 -04:00
2016-02-04 19:00:52 -05:00
build : getdeps verifiers $( UI_ASSETS )
2015-10-26 05:36:01 -04:00
@echo "Installing minio:"
deadcode :
@GO15VENDOREXPERIMENT= 1 deadcode
2015-09-18 01:10:09 -04:00
test : build
@echo "Running all testing:"
2015-09-19 03:52:01 -04:00
@GO15VENDOREXPERIMENT= 1 go test $( GOFLAGS) .
2015-09-18 01:10:09 -04:00
@GO15VENDOREXPERIMENT= 1 go test $( GOFLAGS) github.com/minio/minio/pkg...
2015-01-21 03:50:23 -05:00
2015-07-31 20:03:34 -04:00
gomake-all : build
2015-11-08 05:56:19 -05:00
@GO15VENDOREXPERIMENT= 1 go build --ldflags $( BUILD_LDFLAGS) -o $( GOPATH) /bin/minio
2014-11-01 20:04:24 -04:00
2015-08-23 01:23:36 -04:00
pkg-add :
@GO15VENDOREXPERIMENT= 1 govendor add $( PKG)
2015-10-23 22:29:44 -04:00
pkg-update :
@GO15VENDOREXPERIMENT= 1 govendor update $( PKG)
pkg-remove :
@GO15VENDOREXPERIMENT= 1 govendor remove $( PKG)
2015-06-16 23:20:59 -04:00
install : gomake -all
2014-11-01 20:04:24 -04:00
2016-02-04 21:19:49 -05:00
dockerimage : checkdocker verifiers $( UI_ASSETS )
2015-11-06 19:46:04 -05:00
@echo "Building docker image:" minio:$( TAG)
2015-11-08 05:56:19 -05:00
@GO15VENDOREXPERIMENT= 1 go build --ldflags $( DOCKER_LDFLAGS) -o minio.dockerimage
2015-11-06 19:46:04 -05:00
@mkdir -p export
2015-11-28 15:10:13 -05:00
@sudo docker build --rm --tag= minio/minio:$( TAG) .
2015-11-06 19:46:04 -05:00
@rmdir export
@rm minio.dockerimage
2015-12-02 13:50:54 -05:00
release :
@./release.sh
2014-12-01 17:45:50 -05:00
clean :
2015-03-26 01:51:19 -04:00
@echo "Cleaning up all the generated files:"
2015-01-14 15:40:43 -05:00
@rm -fv cover.out
2015-04-29 00:24:59 -04:00
@rm -fv minio
2015-10-17 18:03:46 -04:00
@rm -fv minio.test
@rm -fv pkg/fs/fs.test
2016-02-07 13:55:51 -05:00
@rm -fv ui-assets.go
@rm -fv ui-assets.asc