2015-11-06 23:55:02 -08:00
LDFLAGS := $( shell go run buildscripts/gen-ldflags.go)
2015-11-08 02:56:19 -08:00
DOCKER_LDFLAGS := '$(LDFLAGS) -extldflags "-static"'
BUILD_LDFLAGS := '$(LDFLAGS)'
2015-11-06 23:55:02 -08:00
TAG := latest
2015-11-02 02:11:34 -08:00
2015-08-20 13:05:47 -07:00
all : install
2014-11-30 13:55:10 -08:00
2014-12-04 01:56:01 -08:00
checkdeps :
2015-03-25 23:10:03 -07:00
@echo "Checking deps:"
2015-02-21 21:38:04 -08:00
@( env bash $( PWD) /buildscripts/checkdeps.sh)
2014-12-04 01:56:01 -08:00
2015-02-18 14:35:49 -08:00
checkgopath :
2015-04-11 17:31:01 -07:00
@echo " Checking if project is at ${ GOPATH } "
2015-10-17 15:03:46 -07: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 02:56:19 -08:00
@echo " Setting BUILD_LDFLAGS: ${ BUILD_LDFLAGS } "
2015-02-01 21:18:46 -08:00
2015-02-18 14:35:49 -08:00
getdeps : checkdeps checkgopath
2015-10-26 02:36:01 -07: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 11:26:01 -07:00
@go get -u github.com/remyoudompheng/go-misc/deadcode && echo "Installed deadcode:"
2015-03-09 16:15:06 -07:00
2015-03-25 15:49:42 -07:00
verifiers : getdeps vet fmt lint cyclo
2015-03-09 16:15:06 -07:00
vet :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-09-09 15:11:37 -07: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 18:34:00 -07:00
2015-03-09 16:15:06 -07:00
fmt :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-08-22 18:34:00 -07:00
@GO15VENDOREXPERIMENT= 1 gofmt -s -l *.go
@GO15VENDOREXPERIMENT= 1 gofmt -s -l pkg
2015-08-12 19:24:31 -07:00
2015-03-09 16:15:06 -07:00
lint :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-09-17 18:53:40 -07:00
@GO15VENDOREXPERIMENT= 1 golint *.go
@GO15VENDOREXPERIMENT= 1 golint github.com/minio/minio/pkg...
2015-03-09 16:15:06 -07:00
2015-03-25 15:49:42 -07:00
cyclo :
2015-03-25 22:51:19 -07:00
@echo " Running $@ : "
2015-10-21 22:25:13 -07:00
@GO15VENDOREXPERIMENT= 1 gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT= 1 gocyclo -over 65 pkg
2015-03-25 15:49:42 -07:00
2015-11-02 02:11:34 -08:00
build : getdeps verifiers
2015-10-26 02:36:01 -07:00
@echo "Installing minio:"
deadcode :
@GO15VENDOREXPERIMENT= 1 deadcode
2015-09-17 22:10:09 -07:00
test : build
@echo "Running all testing:"
2015-09-19 00:52:01 -07:00
@GO15VENDOREXPERIMENT= 1 go test $( GOFLAGS) .
2015-09-17 22:10:09 -07:00
@GO15VENDOREXPERIMENT= 1 go test $( GOFLAGS) github.com/minio/minio/pkg...
2015-01-21 00:50:23 -08:00
2015-07-31 17:03:34 -07:00
gomake-all : build
2015-11-08 02:56:19 -08:00
@GO15VENDOREXPERIMENT= 1 go build --ldflags $( BUILD_LDFLAGS) -o $( GOPATH) /bin/minio
2014-11-01 17:04:24 -07:00
2015-08-22 22:23:36 -07:00
pkg-add :
@GO15VENDOREXPERIMENT= 1 govendor add $( PKG)
2015-10-23 19:29:44 -07:00
pkg-update :
@GO15VENDOREXPERIMENT= 1 govendor update $( PKG)
pkg-remove :
@GO15VENDOREXPERIMENT= 1 govendor remove $( PKG)
2015-06-16 20:20:59 -07:00
install : gomake -all
2014-11-01 17:04:24 -07:00
2015-11-06 16:46:04 -08:00
dockerimage : install
2015-11-28 12:10:13 -08:00
@echo "Checking if docker is installed."
@if [ ! -e /usr/bin/docker ] ; then echo "Docker not installed, cannot build docker image. Please install 'sudo apt-get install docker.io'" && exit 1; fi
2015-11-06 16:46:04 -08:00
@echo "Building docker image:" minio:$( TAG)
2015-11-08 02:56:19 -08:00
@GO15VENDOREXPERIMENT= 1 go build --ldflags $( DOCKER_LDFLAGS) -o minio.dockerimage
2015-11-06 16:46:04 -08:00
@mkdir -p export
2015-11-28 12:10:13 -08:00
@sudo docker build --rm --tag= minio/minio:$( TAG) .
2015-11-06 16:46:04 -08:00
@rmdir export
@rm minio.dockerimage
2014-12-01 14:45:50 -08:00
clean :
2015-03-25 22:51:19 -07:00
@echo "Cleaning up all the generated files:"
2015-01-14 12:40:43 -08:00
@rm -fv cover.out
2015-04-28 21:24:59 -07:00
@rm -fv minio
2015-10-17 15:03:46 -07:00
@rm -fv minio.test
@rm -fv pkg/fs/fs.test