using TARGET_CPU instead of CPU to determine if we are cross compiling to ARM. Of course this is only for WindowsCE. This fixes a build bustage.

git-svn-id: svn://10.0.0.236/trunk@170363 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%meer.net
2005-03-08 05:08:32 +00:00
parent a39b6de366
commit b63f9495ec

View File

@@ -75,10 +75,10 @@ ASFLAGS += /I../../..public
endif
ifeq ($(OS_ARCH),WINCE)
ifeq ($(CPU),ARM)
CPPSRCS := xptcinvokece.cpp xptcstubsce.cpp
ASFILES :=
AS :=
ifeq ($(TARGET_CPU),arm)
CPPSRCS = xptcinvokece.cpp xptcstubsce.cpp
ASFILES =
AS =
ASFLAGS += /I../../..public
endif
endif