diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-31 09:03:28 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-31 09:03:28 +0000 |
commit | df97c9815e12c550276d8cff939ce993c5d2b783 (patch) | |
tree | 0d5b7b3c2728a8f8ed6a69c99eb03307a24d1318 /code/unix/Makefile | |
parent | eeae23bb9a0fb0dc61044fe8214807bf0fe9f763 (diff) | |
download | ioquake3-aero-df97c9815e12c550276d8cff939ce993c5d2b783.tar.gz ioquake3-aero-df97c9815e12c550276d8cff939ce993c5d2b783.zip |
add s390, s390x and ia64. It builds, don't know if it runs tough.
git-svn-id: svn://svn.icculus.org/quake3/trunk@44 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/Makefile')
-rw-r--r-- | code/unix/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index 49b0ff6..399c65e 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -106,11 +106,19 @@ ifeq ($(PLATFORM),linux) ifeq ($(ARCH),x86_64) LIB=lib64 else + ifeq ($(ARCH),ppc64) + LIB=lib64 + else + ifeq ($(ARCH),s390x) + LIB=lib64 + else ifeq ($(ARCH),ppc) VM_PPC=vm_none endif endif endif + endif + endif # bk001205: no mo' -I/usr/include/glide, no FX # bk001205: no mo' -Dstricmp=strcasecmp, see q_shared.h |