X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Makefile;h=19badb914bc95f228d3a9b298977c332221b90c2;hb=b507cd26f484fe8b29dcc8913d1914759e87fb85;hp=9b42fa99124717dbb3d2b953e1907b204a9d9f07;hpb=c490a94700878cfe5066243f4b0f392043e15c2a;p=micro.git diff --git a/Makefile b/Makefile index 9b42fa99..19badb91 100644 --- 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,9 +65,24 @@ testgen: test: go test ./internal/... + go test ./cmd/... bench: - go test -bench=. ./internal/... + for i in 1 2 3; do \ + go test -bench=. ./internal/...; \ + done > benchmark_results + benchstat benchmark_results + +bench-baseline: + for i in 1 2 3; do \ + go test -bench=. ./internal/...; \ + done > benchmark_results_baseline + +bench-compare: + for i in 1 2 3; do \ + go test -bench=. ./internal/...; \ + done > benchmark_results + benchstat -alpha 0.15 benchmark_results_baseline benchmark_results clean: rm -f micro