From 1e2e1021af43114d92a7def90e274c1959c22ea8 Mon Sep 17 00:00:00 2001 From: Yamagi Burmeister Date: Tue, 31 Dec 2013 09:57:07 +0100 Subject: [PATCH] Make ARCH overrideable on Windows --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a0c9b619..91d2ba8f 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ ifeq ($(OSTYPE), Windows) # (amd64 works, but building an 64 bit executable # is not that easy. Especially SDL and OpenAL are # somewhat problematic) -ARCH := i386 +ARCH ?= i386 else # Some platforms call it "amd64" and some "x86_64" ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/amd64/x86_64/)