summaryrefslogtreecommitdiff
path: root/nuttx/configs/z8f64200100kit
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/z8f64200100kit')
-rw-r--r--nuttx/configs/z8f64200100kit/ostest/Make.defs4
-rw-r--r--nuttx/configs/z8f64200100kit/src/Makefile2
2 files changed, 3 insertions, 3 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
diff --git a/nuttx/configs/z8f64200100kit/src/Makefile b/nuttx/configs/z8f64200100kit/src/Makefile
index cb7c22108..7d68ee22c 100644
--- a/nuttx/configs/z8f64200100kit/src/Makefile
+++ b/nuttx/configs/z8f64200100kit/src/Makefile
@@ -61,7 +61,7 @@ $(AOBJS): %$(OBJEXT): %$(ASMEXT)
$(call ASSEMBLE, $<, $@)
$(COBJS) $(LINKOBJS): %$(OBJEXT): %.c
- $(call COMPILE, `cygpath -w $<`, $@)
+ $(call COMPILE, $<, $@)
libboard$(LIBEXT): $(OBJS)
@( for obj in $(OBJS) ; do \