summaryrefslogtreecommitdiff
path: root/nuttx/Makefile.win
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-04 12:35:47 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-04 12:35:47 -0600
commit89627d6c300f03551d82a672d634ed0217a241a4 (patch)
treeb362153fa2b538fa7bf100465160438244812b19 /nuttx/Makefile.win
parent26f5a3472584cc27fa4ac10aa1b892f4dd62b7ae (diff)
downloadpx4-nuttx-89627d6c300f03551d82a672d634ed0217a241a4.tar.gz
px4-nuttx-89627d6c300f03551d82a672d634ed0217a241a4.tar.bz2
px4-nuttx-89627d6c300f03551d82a672d634ed0217a241a4.zip
Don't copy build scripts for kernel build 'make exports'
Diffstat (limited to 'nuttx/Makefile.win')
-rw-r--r--nuttx/Makefile.win11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/Makefile.win b/nuttx/Makefile.win
index bb90d77e4..93cb39ab8 100644
--- a/nuttx/Makefile.win
+++ b/nuttx/Makefile.win
@@ -39,12 +39,19 @@ TOPDIR := ${shell echo %CD%}
-include $(TOPDIR)\Make.defs
# Control build verbosity
+#
+# V=1,2: Enable echo of commands
+# V=2: Enable bug/verbose options in tools and scripts
ifeq ($(V),1)
export Q :=
else
+ifeq ($(V),2)
+export Q :=
+else
export Q := @
endif
+endif
# This define is passed as EXTRADEFINES for kernel-mode builds. It is also passed
# during PASS1 (but not PASS2) context and depend targets.
@@ -154,6 +161,10 @@ MKEXPORT_ARGS = -u
endif
endif
+ifeq ($(V),2)
+MKEXPORT_ARGS += -d
+endif
+
# This is the name of the final target (relative to the top level directorty)
BIN = nuttx$(EXEEXT)