2014-11-26 15:15:34 -08:00
|
|
|
VERSION := 0.7.1
|
2014-04-09 16:20:52 -07:00
|
|
|
|
|
|
|
SRC := $(wildcard *.go)
|
|
|
|
TARGET := node_exporter
|
|
|
|
|
2015-02-05 07:54:53 -08:00
|
|
|
OS := $(subst Darwin,darwin,$(subst Linux,linux,$(subst FreeBSD,freebsd,$(shell uname))))
|
|
|
|
ARCH := $(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m)))
|
2015-01-31 13:00:15 -08:00
|
|
|
|
|
|
|
# The release engineers apparently need to key their binary artifacts to the
|
|
|
|
# Mac OS X release family.
|
|
|
|
MAC_OS_X_VERSION ?= 10.8
|
|
|
|
|
|
|
|
GOOS ?= $(OS)
|
|
|
|
GOARCH ?= $(ARCH)
|
|
|
|
|
|
|
|
ifeq ($(GOOS),darwin)
|
|
|
|
RELEASE_SUFFIX ?= -osx$(MAC_OS_X_VERSION)
|
|
|
|
else
|
|
|
|
RELEASE_SUFFIX ?=
|
|
|
|
endif
|
2015-02-05 07:54:53 -08:00
|
|
|
|
2015-01-31 13:00:15 -08:00
|
|
|
GO_VERSION ?= 1.4.1
|
2015-01-31 13:46:42 -08:00
|
|
|
GOURL ?= https://golang.org/dl
|
2015-01-31 13:00:15 -08:00
|
|
|
GOPKG ?= go$(GO_VERSION).$(GOOS)-$(GOARCH)$(RELEASE_SUFFIX).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)
|
2014-04-09 16:20:52 -07:00
|
|
|
|
|
|
|
SUFFIX := $(GOOS)-$(GOARCH)
|
|
|
|
BINARY := $(TARGET)
|
|
|
|
ARCHIVE := $(TARGET)-$(VERSION).$(SUFFIX).tar.gz
|
2015-01-25 03:38:20 -08:00
|
|
|
SELFLINK := $(GOPATH)/src/github.com/prometheus/node_exporter
|
2014-04-09 16:20:52 -07:00
|
|
|
|
2015-01-25 03:38:20 -08:00
|
|
|
default: $(BINARY)
|
2014-04-09 16:20:52 -07:00
|
|
|
|
|
|
|
.deps/$(GOPKG):
|
|
|
|
mkdir -p .deps
|
2015-01-31 13:00:15 -08:00
|
|
|
curl -o .deps/$(GOPKG) -L $(GOURL)/$(GOPKG)
|
2014-04-09 16:20:52 -07:00
|
|
|
|
|
|
|
$(GOCC): .deps/$(GOPKG)
|
|
|
|
tar -C .deps -xzf .deps/$(GOPKG)
|
|
|
|
touch $@
|
|
|
|
|
2015-01-25 03:38:20 -08:00
|
|
|
$(SELFLINK):
|
|
|
|
mkdir -p $(GOPATH)/src/github.com/prometheus
|
|
|
|
ln -s $(CURDIR) $(SELFLINK)
|
|
|
|
|
|
|
|
dependencies: $(SRC) $(SELFLINK)
|
2014-04-09 16:20:52 -07:00
|
|
|
$(GO) get -d
|
|
|
|
|
|
|
|
$(BINARY): $(GOCC) $(SRC) dependencies
|
|
|
|
$(GO) build $(GOFLAGS) -o $@
|
|
|
|
|
|
|
|
$(ARCHIVE): $(BINARY)
|
|
|
|
tar -czf $@ $<
|
|
|
|
|
|
|
|
release: REMOTE ?= $(error "can't release, REMOTE not set")
|
|
|
|
release: REMOTE_DIR ?= $(error "can't release, REMOTE_DIR not set")
|
|
|
|
release: $(ARCHIVE)
|
|
|
|
scp $< $(REMOTE):$(REMOTE_DIR)/$(ARCHIVE)
|
|
|
|
|
2015-02-09 13:41:51 -08:00
|
|
|
test: $(GOCC) dependencies
|
|
|
|
$(GO) test ./...
|
|
|
|
|
2014-04-09 16:20:52 -07:00
|
|
|
clean:
|
2015-01-25 03:38:20 -08:00
|
|
|
rm -rf node_exporter .deps
|
2014-04-09 16:20:52 -07:00
|
|
|
|
2015-02-09 13:41:51 -08:00
|
|
|
.PHONY: clean default dependencies release test
|