]> git.lizzy.rs Git - micro.git/blob - Makefile
Merge pull request #1412 from tommyshem/batSyntaxHighlighting
[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 GOBIN ?= $(shell go env GOPATH)/bin
11 GOVARS = -X github.com/zyedidia/micro/internal/util.Version=$(VERSION) -X github.com/zyedidia/micro/internal/util.CommitHash=$(HASH) -X 'github.com/zyedidia/micro/internal/util.CompileDate=$(DATE)' -X github.com/zyedidia/micro/internal/util.Debug=OFF
12
13 # Builds micro after checking dependencies but without updating the runtime
14 build:
15         go build -mod=readonly -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
16
17 build-dbg:
18         go build -mod=readonly -ldflags "-s -w $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
19
20 build-mod:
21         go build -ldflags "-s -w $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
22
23 # Builds micro after building the runtime and checking dependencies
24 build-all: runtime build
25
26 # Builds micro without checking for dependencies
27 build-quick:
28         go build -mod=readonly -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
29
30 # Same as 'build' but installs to $GOBIN afterward
31 install:
32         go install -mod=readonly -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro
33
34 # Same as 'build-all' but installs to $GOBIN afterward
35 install-all: runtime install
36
37 # Same as 'build-quick' but installs to $GOBIN afterward
38 install-quick:
39         go install -mod=readonly -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)"  ./cmd/micro
40
41 # Builds the runtime
42 runtime:
43         git submodule update --init
44         go run runtime/syntax/make_headers.go runtime/syntax
45         go build -o tools/bindata ./tools/go-bindata
46         tools/bindata -pkg config -nomemcopy -nometadata -o runtime.go runtime/...
47         mv runtime.go internal/config
48         gofmt -w internal/config/runtime.go
49
50 test:
51         go test ./internal/...
52
53 clean:
54         rm -f micro