Merge pull request #34 from brian-brazil/hermetic

Make build hermetic.
This commit is contained in:
juliusv 2015-01-25 16:33:08 +01:00
commit 1b1c14c47b
1 changed files with 11 additions and 7 deletions

View File

@ -8,9 +8,9 @@ ARCH := $(subst x86_64,amd64,$(shell uname -m))
GOOS ?= $(OS)
GOARCH ?= $(ARCH)
GOPKG := go1.3.3.$(OS)-$(ARCH).tar.gz
GOROOT ?= $(CURDIR)/.deps/go
GOPATH ?= $(CURDIR)/.deps/gopath
GOPKG := go1.4.1.$(OS)-$(ARCH).tar.gz
GOROOT := $(CURDIR)/.deps/go
GOPATH := $(CURDIR)/.deps/gopath
GOCC := $(GOROOT)/bin/go
GOLIB := $(GOROOT)/pkg/$(GOOS)_$(GOARCH)
GO := GOROOT=$(GOROOT) GOPATH=$(GOPATH) $(GOCC)
@ -18,9 +18,9 @@ GO := GOROOT=$(GOROOT) GOPATH=$(GOPATH) $(GOCC)
SUFFIX := $(GOOS)-$(GOARCH)
BINARY := $(TARGET)
ARCHIVE := $(TARGET)-$(VERSION).$(SUFFIX).tar.gz
SELFLINK := $(GOPATH)/src/github.com/prometheus/node_exporter
default:
go build $(GOFLAGS)
default: $(BINARY)
.deps/$(GOPKG):
mkdir -p .deps
@ -30,7 +30,11 @@ $(GOCC): .deps/$(GOPKG)
tar -C .deps -xzf .deps/$(GOPKG)
touch $@
dependencies: $(SRC)
$(SELFLINK):
mkdir -p $(GOPATH)/src/github.com/prometheus
ln -s $(CURDIR) $(SELFLINK)
dependencies: $(SRC) $(SELFLINK)
$(GO) get -d
$(BINARY): $(GOCC) $(SRC) dependencies
@ -45,6 +49,6 @@ release: $(ARCHIVE)
scp $< $(REMOTE):$(REMOTE_DIR)/$(ARCHIVE)
clean:
rm -rf bin
rm -rf node_exporter .deps
.PHONY: dependencies clean release