diff --git a/Makefile b/Makefile index e7ebe88..b935c60 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,10 @@ GO ?= go ifndef GOOS ifeq ($(OS), Windows_NT) GOOS := windows + GOEXT := .exe else GOOS := $(shell uname -s| tr '[:upper:]' '[:lower:]') + GOEXT := endif endif @@ -12,13 +14,10 @@ ifndef GOARCH MACHINE=$(shell uname -m) ifeq ($(MACHINE), x86_64) GOARCH := amd64 - GOEXT := else ifeq ($(MACHINE), i386) GOARCH := i386 - GOEXT := else ifeq ($(MACHINE), arm) GOARCH := arm64 - GOEXT := .exe endif endif # Set build targets based on OS diff --git a/VERSION b/VERSION index 6e8bf73..17e51c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.1.1