]> git.lizzy.rs Git - micro.git/blob - Makefile
Merge pull request #700 from Calinou/darcula-tc-colorscheme
[micro.git] / Makefile
1 .PHONY: runtime
2
3 VERSION := $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
4         go run tools/build-version.go)
5 HASH := $(shell git rev-parse --short HEAD)
6 DATE := $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
7         go run tools/build-date.go)
8 ADDITIONAL_GO_LINKER_FLAGS := $(shell GOOS=$(shell go env GOHOSTOS) \
9         GOARCH=$(shell go env GOHOSTARCH) \
10         go run tools/info-plist.go "$(VERSION)")
11 GOBIN ?= $(shell go env GOPATH)/bin
12
13 # Builds micro after checking dependencies but without updating the runtime
14 build: update
15         go build -ldflags "-s -w -X main.Version=$(VERSION) -X main.CommitHash=$(HASH) -X 'main.CompileDate=$(DATE)' $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
16
17 # Builds micro after building the runtime and checking dependencies
18 build-all: runtime build
19
20 # Builds micro without checking for dependencies
21 build-quick:
22         go build -ldflags "-s -w -X main.Version=$(VERSION) -X main.CommitHash=$(HASH) -X 'main.CompileDate=$(DATE)' $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
23
24 # Same as 'build' but installs to $GOBIN afterward
25 install: update
26         go install -ldflags "-s -w -X main.Version=$(VERSION) -X main.CommitHash=$(HASH) -X 'main.CompileDate=$(DATE)' $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
27
28 # Same as 'build-all' but installs to $GOBIN afterward
29 install-all: runtime install
30
31 # Same as 'build-quick' but installs to $GOBIN afterward
32 install-quick:
33         go install -ldflags "-s -w -X main.Version=$(VERSION) -X main.CommitHash=$(HASH) -X 'main.CompileDate=$(DATE)' $(ADDITIONAL_GO_LINKER_FLAGS)"  ./cmd/micro
34
35 update:
36         git pull
37         git submodule update
38
39 # Builds the runtime
40 runtime:
41         go get -u github.com/jteeuwen/go-bindata/...
42         $(GOBIN)/go-bindata -nometadata -o runtime.go runtime/...
43         mv runtime.go cmd/micro
44
45 test:
46         go test ./cmd/micro
47
48 clean:
49         rm -f micro