summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-16 12:41:58 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-16 12:41:58 +0000
commit5005a9f2ff8fa5549de72c10067753da303f210e (patch)
treec71a30be978332c2b24582697e98963c8d442794 /nuttx/tools
parent51e0c930ca583196bf1075217cff969a0f7e4619 (diff)
downloadpx4-nuttx-5005a9f2ff8fa5549de72c10067753da303f210e.tar.gz
px4-nuttx-5005a9f2ff8fa5549de72c10067753da303f210e.tar.bz2
px4-nuttx-5005a9f2ff8fa5549de72c10067753da303f210e.zip
Changes from Mike
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5361 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools')
-rw-r--r--nuttx/tools/Config.mk13
-rw-r--r--nuttx/tools/Makefile.host6
2 files changed, 17 insertions, 2 deletions
diff --git a/nuttx/tools/Config.mk b/nuttx/tools/Config.mk
index f05933f1a..4cdda113c 100644
--- a/nuttx/tools/Config.mk
+++ b/nuttx/tools/Config.mk
@@ -43,6 +43,19 @@ CONFIG_ARCH := $(patsubst "%",%,$(strip $(CONFIG_ARCH)))
CONFIG_ARCH_CHIP := $(patsubst "%",%,$(strip $(CONFIG_ARCH_CHIP)))
CONFIG_ARCH_BOARD := $(patsubst "%",%,$(strip $(CONFIG_ARCH_BOARD)))
+# DELIM - Path segment delimiter character
+#
+# Depends on this settings defined in board-specific defconfig file installed
+# at $(TOPDIR)/.config:
+#
+# CONFIG_WINDOWS_NATIVE - Defined for a Windows native build
+
+ifeq ($(CONFIG_WINDOWS_NATIVE),y)
+ DELIM = $(strip \)
+else
+ DELIM = $(strip /)
+endif
+
# INCDIR - Convert a list of directory paths to a list of compiler include
# directirves
# Example: CFFLAGS += ${shell $(INCDIR) [options] "compiler" "dir1" "dir2" "dir2" ...}
diff --git a/nuttx/tools/Makefile.host b/nuttx/tools/Makefile.host
index 478625008..16975a42a 100644
--- a/nuttx/tools/Makefile.host
+++ b/nuttx/tools/Makefile.host
@@ -123,5 +123,7 @@ endif
clean:
$(Q) rm -f *.o *.a *~ .*.swp
- $(Q) rm -f mkconfig mksyscall mkversion bdf-converter
- $(Q) rm -f mkconfig.exe mksyscall.exe mkversion.exe bdf-converter.exe
+ $(Q) rm -f mkdeps mkconfig mksyscall mkversion bdf-converter
+ $(Q) rm -f mkdeps.exe mkconfig.exe mksyscall.exe mkversion.exe bdf-converter.exe
+ $(Q) rm -rf *.dSYM
+