]> git.lizzy.rs Git - micro.git/blobdiff - Makefile
Improve multicursor clipboard
[micro.git] / Makefile
index f3c0ca0d68b365ca163515bcb365639ea4ac0a4d..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 \
@@ -79,7 +82,7 @@ bench-compare:
        for i in 1 2 3; do \
                go test -bench=. ./internal/...; \
        done > benchmark_results
-       benchstat benchmark_results_baseline benchmark_results
+       benchstat -alpha 0.15 benchmark_results_baseline benchmark_results
 
 clean:
        rm -f micro