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