Fix building on non-windows machines

Don't default to windows if GOOS is not set.  Likewise, don't default to
386 if GOARCH isn't set.  Go will use the system's default values, or
any values set before running `make`.
This commit is contained in:
Zorchenhimer 2020-11-04 23:20:15 -05:00
parent a840f80f9a
commit e26ae33758
1 changed files with 0 additions and 8 deletions

View File

@ -13,11 +13,3 @@ include make/Makefile.common
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)
EXT=.exe EXT=.exe
endif endif
ifeq ($(GOOS),)
GOOS=windows
endif
ifeq ($(ARCH),)
ARCH=386
endif