|
From: <kin...@us...> - 2003-12-20 07:57:38
|
Update of /cvsroot/teem/teem/src/make
In directory sc8-pr-cvs1:/tmp/cvs-serv3899
Modified Files:
linux.mk
Log Message:
linux.64 has split into linux.ia64 and linux.amd64
Index: linux.mk
===================================================================
RCS file: /cvsroot/teem/teem/src/make/linux.mk,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** linux.mk 18 Sep 2003 05:32:21 -0000 1.23
--- linux.mk 20 Dec 2003 07:57:35 -0000 1.24
***************
*** 29,43 ****
TEEM_QNANHIBIT = 1
TEEM_DIO = 0
! ifeq ($(SUBARCH),64)
TEEM_32BIT = 0
ARCH_CFLAG = -fPIC -Wall
ARCH_LDFLAG =
else
! ifeq ($(SUBARCH),32)
! TEEM_32BIT = 1
! ARCH_CFLAG = -Wall
! ARCH_LDFLAG =
else
! $(error linux sub-architecture "$(SUBARCH)" not recognized)
endif
endif
--- 29,49 ----
TEEM_QNANHIBIT = 1
TEEM_DIO = 0
! ifeq ($(SUBARCH),ia64)
TEEM_32BIT = 0
ARCH_CFLAG = -fPIC -Wall
ARCH_LDFLAG =
else
! ifeq ($(SUBARCH),amd64)
! TEEM_32BIT = 0
! ARCH_CFLAG = -fPIC -Wall
! ARCH_LDFLAG =
else
! ifeq ($(SUBARCH),32)
! TEEM_32BIT = 1
! ARCH_CFLAG = -Wall
! ARCH_LDFLAG =
! else
! $(error linux sub-architecture "$(SUBARCH)" not recognized)
! endif
endif
endif
|