summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-18 20:59:30 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-18 20:59:30 +0000
commit7513c5be902a5df90eebd71a5300014736bb7f88 (patch)
tree18ba50c73d2f9b7fdbf7504bcdc004c89e35ab7d /nuttx/tools
parentabe75281e693689f8efe02ddad2c82ae067e5d98 (diff)
downloadpx4-nuttx-7513c5be902a5df90eebd71a5300014736bb7f88.tar.gz
px4-nuttx-7513c5be902a5df90eebd71a5300014736bb7f88.tar.bz2
px4-nuttx-7513c5be902a5df90eebd71a5300014736bb7f88.zip
Fix typol in Config.mk that would effect non-Windows builds
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5369 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools')
-rw-r--r--nuttx/tools/Config.mk14
1 files changed, 13 insertions, 1 deletions
diff --git a/nuttx/tools/Config.mk b/nuttx/tools/Config.mk
index aafb58f35..300df7a6a 100644
--- a/nuttx/tools/Config.mk
+++ b/nuttx/tools/Config.mk
@@ -182,11 +182,23 @@ define DELFILE
$(Q) if exist $1 (del /f /q $1)
endef
else
-define CLEAN
+define DELFILE
$(Q) rm -f $1
endef
endif
+# DELDIR - Delect one directory
+
+ifeq ($(CONFIG_WINDOWS_NATIVE),y)
+define DELDIR
+ $(Q) if exist $1 (rmdir /q /s $1)
+endef
+else
+define DELDIR
+ $(Q) rm -rf $1
+endef
+endif
+
# CLEAN - Default clean target
ifeq ($(CONFIG_WINDOWS_NATIVE),y)