Makefile: use GOEXE to build on windows

Turns out that there's already special goenv variable to build with proper extension.
This commit is contained in:
AnnaShaleva 2021-11-17 18:42:03 +03:00
parent a860e82e9d
commit 41f3b64c14

View file

@ -1,12 +1,7 @@
BRANCH = "master"
REPONAME = "neo-go"
NETMODE ?= "privnet"
GOOS ?= $(shell go env GOOS)
EXTENSION=
ifeq ($(GOOS),windows)
EXTENSION=".exe"
endif
BINARY=./bin/neo-go$(EXTENSION)
BINARY=./bin/neo-go$(shell go env GOEXE)
DESTDIR = ""
SYSCONFIGDIR = "/etc"
BINDIR = "/usr/bin"