2015-11-07 02:55:02 -05:00
|
|
|
LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
|
2016-02-18 20:16:41 -05:00
|
|
|
PWD := $(shell pwd)
|
|
|
|
GOPATH := $(shell go env GOPATH)
|
2015-11-08 05:56:19 -05:00
|
|
|
BUILD_LDFLAGS := '$(LDFLAGS)'
|
2015-11-07 02:55:02 -05:00
|
|
|
TAG := latest
|
2015-11-02 05:11:34 -05:00
|
|
|
|
2016-02-13 04:03:01 -05:00
|
|
|
HOST ?= $(shell uname)
|
|
|
|
CPU ?= $(shell uname -m)
|
|
|
|
|
|
|
|
# if no host is identifed (no uname tool)
|
|
|
|
# we assume a Linux-64bit build
|
|
|
|
ifeq ($(HOST),)
|
|
|
|
HOST = Linux
|
|
|
|
endif
|
|
|
|
|
|
|
|
# identify CPU
|
|
|
|
ifeq ($(CPU), x86_64)
|
|
|
|
HOST := $(HOST)64
|
|
|
|
else
|
2016-03-26 16:36:33 -04:00
|
|
|
ifeq ($(CPU), amd64)
|
|
|
|
HOST := $(HOST)64
|
|
|
|
else
|
2016-02-13 04:03:01 -05:00
|
|
|
ifeq ($(CPU), i686)
|
|
|
|
HOST := $(HOST)32
|
|
|
|
endif
|
|
|
|
endif
|
2016-03-26 16:36:33 -04:00
|
|
|
endif
|
2016-02-13 04:03:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
#############################################
|
|
|
|
# now we find out the target OS for
|
|
|
|
# which we are going to compile in case
|
|
|
|
# the caller didn't yet define OS himself
|
|
|
|
ifndef (OS)
|
|
|
|
ifeq ($(HOST), Linux64)
|
|
|
|
arch = gcc
|
|
|
|
else
|
|
|
|
ifeq ($(HOST), Linux32)
|
|
|
|
arch = 32
|
|
|
|
else
|
|
|
|
ifeq ($(HOST), Darwin64)
|
|
|
|
arch = clang
|
|
|
|
else
|
|
|
|
ifeq ($(HOST), Darwin32)
|
|
|
|
arch = clang
|
2016-03-26 16:36:33 -04:00
|
|
|
else
|
|
|
|
ifeq ($(HOST), FreeBSD64)
|
|
|
|
arch = gcc
|
|
|
|
endif
|
2016-02-13 04:03:01 -05:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-08-20 16:05:47 -04:00
|
|
|
all: install
|
2014-11-30 16:55:10 -05:00
|
|
|
|
2016-02-18 20:16:41 -05:00
|
|
|
checks:
|
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)
|
2016-02-18 20:16:41 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/checkgopath.sh)
|
2015-02-02 00:18:46 -05:00
|
|
|
|
2016-02-18 20:16:41 -05:00
|
|
|
getdeps: checks
|
2015-10-26 05:36:01 -04:00
|
|
|
@go get -u github.com/golang/lint/golint && echo "Installed golint:"
|
|
|
|
@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:"
|
2016-02-10 00:51:03 -05:00
|
|
|
@go get -u github.com/client9/misspell/cmd/misspell && echo "Installed misspell:"
|
2016-03-28 00:52:38 -04:00
|
|
|
@go get -u github.com/gordonklaus/ineffassign && echo "Installed ineffassign:"
|
2015-03-09 19:15:06 -04:00
|
|
|
|
2016-03-21 18:47:43 -04:00
|
|
|
verifiers: vet fmt lint cyclo spelling
|
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
|
|
|
|
2016-03-28 00:52:38 -04:00
|
|
|
ineffassign:
|
|
|
|
@echo "Running $@:"
|
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/ineffassign .
|
|
|
|
|
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-04-02 18:21:28 -04:00
|
|
|
build: getdeps verifiers $(UI_ASSETS)
|
2015-10-26 05:36:01 -04:00
|
|
|
|
|
|
|
deadcode:
|
2016-02-10 00:51:03 -05:00
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/deadcode
|
|
|
|
|
|
|
|
spelling:
|
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell *.go
|
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell pkg/**/*
|
2015-09-18 01:10:09 -04:00
|
|
|
|
|
|
|
test: build
|
2016-02-10 19:40:09 -05:00
|
|
|
@echo "Running all minio testing:"
|
2016-04-02 18:21:28 -04:00
|
|
|
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) .
|
|
|
|
@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
|
2016-02-10 19:40:09 -05:00
|
|
|
@echo "Installing minio:"
|
2016-04-02 18:21:28 -04: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:
|
2016-02-10 00:51:03 -05:00
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/govendor add $(PKG)
|
2015-08-23 01:23:36 -04:00
|
|
|
|
2015-10-23 22:29:44 -04:00
|
|
|
pkg-update:
|
2016-02-10 00:51:03 -05:00
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/govendor update $(PKG)
|
2015-10-23 22:29:44 -04:00
|
|
|
|
|
|
|
pkg-remove:
|
2016-02-10 00:51:03 -05:00
|
|
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/govendor remove $(PKG)
|
2015-10-23 22:29:44 -04:00
|
|
|
|
2016-02-23 17:57:14 -05:00
|
|
|
pkg-list:
|
|
|
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/govendor list
|
|
|
|
|
2015-06-16 23:20:59 -04:00
|
|
|
install: gomake-all
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2016-02-23 17:57:14 -05:00
|
|
|
release: verifiers
|
2016-03-18 16:02:06 -04:00
|
|
|
@MINIO_RELEASE=RELEASE ./buildscripts/build.sh
|
2016-02-23 17:57:14 -05:00
|
|
|
|
|
|
|
experimental: verifiers
|
2016-03-18 16:02:06 -04:00
|
|
|
@MINIO_RELEASE=EXPERIMENTAL ./buildscripts/build.sh
|
2015-12-02 13:50:54 -05:00
|
|
|
|
2014-12-01 17:45:50 -05:00
|
|
|
clean:
|
2015-03-26 01:51:19 -04:00
|
|
|
@echo "Cleaning up all the generated files:"
|
2016-02-10 19:40:09 -05:00
|
|
|
@rm -fv minio minio.test cover.out
|
|
|
|
@find . -name '*.test' | xargs rm -fv
|
|
|
|
@rm -rf isa-l
|
|
|
|
@rm -rf build
|
2016-02-23 17:57:14 -05:00
|
|
|
@rm -rf release
|