- Adding code to support Neutrino OS. Had to use the OS_TARGET

- variable instead of OS_ARCH because Neutrino is still cross-compiled.
This commit is contained in:
Jerry.Kirk%Nexwarecorp.com 1999-06-21 19:58:48 +00:00
parent e3f01ed02b
commit 0ac3189ed5

View File

@ -53,6 +53,16 @@ CPPSRCS = \
endif
endif
# Neutrino/Intel (uses the same unixish_x86 code)
ifeq ($(OS_TARGET),NTO)
ifeq ($(OS_TEST),x86)
CPPSRCS = \
xptcinvoke_unixish_x86.cpp \
xptcstubs_unixish_x86.cpp \
$(NULL)
endif
endif
# Solaris/sparc
ifneq (,$(filter SunOS,$(OS_ARCH)))
ifneq (86,$(findstring 86,$(OS_TEST)))