summaryrefslogtreecommitdiff
path: root/nuttx/configs/z16f2800100zcog/ostest/Make.defs
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/z16f2800100zcog/ostest/Make.defs')
-rw-r--r--nuttx/configs/z16f2800100zcog/ostest/Make.defs4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/z16f2800100zcog/ostest/Make.defs b/nuttx/configs/z16f2800100zcog/ostest/Make.defs
index 58a4dbc5d..273811bf7 100644
--- a/nuttx/configs/z16f2800100zcog/ostest/Make.defs
+++ b/nuttx/configs/z16f2800100zcog/ostest/Make.defs
@@ -136,12 +136,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