mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Make ARCH overrideable on Windows
This commit is contained in:
parent
950c31d4ee
commit
1e2e1021af
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -97,7 +97,7 @@ ifeq ($(OSTYPE), Windows)
|
||||||
# (amd64 works, but building an 64 bit executable
|
# (amd64 works, but building an 64 bit executable
|
||||||
# is not that easy. Especially SDL and OpenAL are
|
# is not that easy. Especially SDL and OpenAL are
|
||||||
# somewhat problematic)
|
# somewhat problematic)
|
||||||
ARCH := i386
|
ARCH ?= i386
|
||||||
else
|
else
|
||||||
# Some platforms call it "amd64" and some "x86_64"
|
# Some platforms call it "amd64" and some "x86_64"
|
||||||
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)
|
||||||
|
|
Loading…
Reference in a new issue