|
|
@@ -92,12 +92,12 @@ IPATH_DIRS += $(DTOOL)
|
|
|
|
|
|
# Convert CT_INCLUDE_PATH to cc/CC compatible flag string
|
|
|
ifeq (WIN32_VC,$(PENV_COMPILER))
|
|
|
- IPATH_DIRS := $(foreach path,$(IPATH_DIRS),$(shell cygpath -w $(path)))
|
|
|
+ IPATH := $(foreach path,$(IPATH_DIRS),-I"$(shell cygpath -w $(path))")
|
|
|
SYS_IPATH := -I"$(shell cygpath -w /msvc98/Include)"
|
|
|
+else
|
|
|
+ IPATH := $(patsubst %,-I"%",$(IPATH_DIRS))
|
|
|
endif
|
|
|
|
|
|
-IPATH := $(patsubst %,-I"%",$(IPATH_DIRS))
|
|
|
-
|
|
|
##### Playstation2 can't handle .so's. The rename to .a's is handled here
|
|
|
##### and acted upon in Makefile.so.rules. (CSN)
|
|
|
|