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.

This commit is contained in:
dougt%meer.net 2005-03-08 05:08:32 +00:00
Родитель fb0f3abf85
Коммит 3be5c7498b
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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