summaryrefslogtreecommitdiff
path: root/nuttx/configs/z8f64200100kit/ostest/Make.defs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-12-08 21:21:46 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-12-08 21:21:46 +0000
commitebad9d789e8f4be10d95dd6a58af9cf8039bb6ba (patch)
tree6c2ba7c5ef9da7863aeb78f2a15ee8d1a0d7ebc2 /nuttx/configs/z8f64200100kit/ostest/Make.defs
parentf607dc94253a322604bb5f346ae7b2703bad3c28 (diff)
downloadpx4-nuttx-ebad9d789e8f4be10d95dd6a58af9cf8039bb6ba.tar.gz
px4-nuttx-ebad9d789e8f4be10d95dd6a58af9cf8039bb6ba.tar.bz2
px4-nuttx-ebad9d789e8f4be10d95dd6a58af9cf8039bb6ba.zip
Need to use cygpath consistently for compilation in subdirectories
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1439 42af7a65-404d-4744-a932-0658087f49c3
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