]> git.lizzy.rs Git - micro.git/blobdiff - Makefile
Exit gracefully when SIGTERM is received
[micro.git] / Makefile
index a0a1417a6612538f5688b0b2ff422db60fa78a6c..19badb914bc95f228d3a9b298977c332221b90c2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,8 @@ HASH = $(shell git rev-parse --short HEAD)
 DATE = $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
        go run tools/build-date.go)
 ADDITIONAL_GO_LINKER_FLAGS = $(shell GOOS=$(shell go env GOHOSTOS) \
-       GOARCH=$(shell go env GOHOSTARCH))
+       GOARCH=$(shell go env GOHOSTARCH) \
+       go run tools/info-plist.go "$(VERSION)")
 GOBIN ?= $(shell go env GOPATH)/bin
 GOVARS = -X github.com/zyedidia/micro/v2/internal/util.Version=$(VERSION) -X github.com/zyedidia/micro/v2/internal/util.CommitHash=$(HASH) -X 'github.com/zyedidia/micro/v2/internal/util.CompileDate=$(DATE)'
 DEBUGVAR = -X github.com/zyedidia/micro/v2/internal/util.Debug=ON
@@ -46,6 +47,7 @@ fetch-tags:
 # Builds the runtime
 runtime:
        git submodule update --init
+       rm -f runtime/syntax/*.hdr
        go run runtime/syntax/make_headers.go runtime/syntax
        go build -o tools/bindata ./tools/go-bindata
        tools/bindata -pkg config -nomemcopy -nometadata -o runtime.go runtime/...
@@ -63,6 +65,7 @@ testgen:
 
 test:
        go test ./internal/...
+       go test ./cmd/...
 
 bench:
        for i in 1 2 3; do \