aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-10-12 10:25:13 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-10-12 10:25:13 +0000
commit2d93e7198e1a3d503fc9bc931df3e63771574584 (patch)
tree6cc297f903fa55bed723d852ceb4584ab5c06615 /Makefile
parentf25c2258c2beef414e18b1461694cb4ab372d4f7 (diff)
downloadioquake3-aero-2d93e7198e1a3d503fc9bc931df3e63771574584.tar.gz
ioquake3-aero-2d93e7198e1a3d503fc9bc931df3e63771574584.zip
actually build 64bit binaries on ppc64
git-svn-id: svn://svn.icculus.org/quake3/trunk@1194 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ba39d1f..f8748a1 100644
--- a/Makefile
+++ b/Makefile
@@ -257,6 +257,11 @@ ifeq ($(PLATFORM),linux)
# linux32 make ...
BASE_CFLAGS += -m32
LDFLAGS+=-m32
+ else
+ ifeq ($(ARCH),ppc64)
+ BASE_CFLAGS += -m64
+ LDFLAGS += -m64
+ endif
endif
DEBUG_CFLAGS = $(BASE_CFLAGS) -g -O0