mirror of
https://github.com/zyedidia/micro.git
synced 2025-06-19 07:15:34 -04:00
Use GOHOSTARCH/GOHOSTOS to get version, date, Resolves #620
For "install" target, get GOBIN using 'go env GOPATH' instead of $GOPATH because new Go doesn't require $GOPATH be set
This commit is contained in:
parent
47c9cc2fea
commit
6945aa34eb
15
Makefile
15
Makefile
@ -1,11 +1,14 @@
|
|||||||
.PHONY: runtime
|
.PHONY: runtime
|
||||||
|
|
||||||
VERSION = $(shell go run tools/build-version.go)
|
VERSION := $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
|
||||||
HASH = $(shell git rev-parse --short HEAD)
|
go run tools/build-version.go)
|
||||||
DATE = $(shell go run tools/build-date.go)
|
HASH := $(shell git rev-parse --short HEAD)
|
||||||
ADDITIONAL_GO_LINKER_FLAGS = $(shell go run tools/info-plist.go "$(VERSION)")
|
DATE := $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \
|
||||||
|
go run tools/build-date.go)
|
||||||
GOBIN ?= $(GOPATH)/bin
|
ADDITIONAL_GO_LINKER_FLAGS := $(shell GOOS=$(shell go env GOHOSTOS) \
|
||||||
|
GOARCH=$(shell go env GOHOSTARCH) \
|
||||||
|
go run tools/info-plist.go "$(VERSION)")
|
||||||
|
GOBIN ?= $(shell go env GOPATH)/bin
|
||||||
|
|
||||||
# Builds micro after checking dependencies but without updating the runtime
|
# Builds micro after checking dependencies but without updating the runtime
|
||||||
build: deps
|
build: deps
|
||||||
|
Loading…
Reference in New Issue
Block a user