Add Makefile with install and release targets

This commit is contained in:
Tobias Schmidt 2014-04-09 19:20:52 -04:00
parent 0f7604c3cd
commit c18f7ecfc6
2 changed files with 52 additions and 0 deletions

2
.gitignore vendored
View file

@ -21,3 +21,5 @@ _testmain.go
*.exe
node_exporter
.deps
*.tar.gz

50
Makefile Normal file
View file

@ -0,0 +1,50 @@
VERSION := 0.3.0
SRC := $(wildcard *.go)
TARGET := node_exporter
OS := $(subst Darwin,darwin,$(subst Linux,linux,$(shell uname)))
ARCH := $(subst x86_64,amd64,$(shell uname -m))
GOOS ?= $(OS)
GOARCH ?= $(ARCH)
GOPKG := go1.2.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)
SUFFIX := $(GOOS)-$(GOARCH)
BINARY := $(TARGET)
ARCHIVE := $(TARGET)-$(VERSION).$(SUFFIX).tar.gz
default:
go build $(GOFLAGS)
.deps/$(GOPKG):
mkdir -p .deps
curl -o .deps/$(GOPKG) http://go.googlecode.com/files/$(GOPKG)
$(GOCC): .deps/$(GOPKG)
tar -C .deps -xzf .deps/$(GOPKG)
touch $@
dependencies: $(SRC)
$(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)
clean:
rm -rf bin
.PHONY: dependencies clean release