summaryrefslogtreecommitdiff
path: root/nuttx/configs/z8f64200100kit/ostest/Make.defs
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/z8f64200100kit/ostest/Make.defs')
-rw-r--r--nuttx/configs/z8f64200100kit/ostest/Make.defs4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/z8f64200100kit/ostest/Make.defs b/nuttx/configs/z8f64200100kit/ostest/Make.defs
index 72e025a40..1428ef207 100644
--- a/nuttx/configs/z8f64200100kit/ostest/Make.defs
+++ b/nuttx/configs/z8f64200100kit/ostest/Make.defs
@@ -162,12 +162,12 @@ endef
define COMPILE
@#echo "CC: $1"
- @$(CC) $(CFLAGS) $1
+ @(wfile=`cygpath -w $1`; $(CC) $(CFLAGS) $$wfile)
endef
define ASSEMBLE
@#echo "AS: $1"
- @$(AS) -c $(AFLAGS) $1
+ @(wfile=`cygpath -w $1`; $(AS) $(AFLAGS) $$wfile)
endef
define ARCHIVE