summaryrefslogtreecommitdiff
path: root/nuttx/Makefile.win
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-06 13:00:50 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-06 13:00:50 -0600
commit77a632298aebc2287acf233f6dd998aa8d1f4db8 (patch)
treee6a2f31bb4f24ab917272e5a2ef9853708356f14 /nuttx/Makefile.win
parent77fb1a3d39743ca53ed17239109b8a82c293205e (diff)
downloadnuttx-77a632298aebc2287acf233f6dd998aa8d1f4db8.tar.gz
nuttx-77a632298aebc2287acf233f6dd998aa8d1f4db8.tar.bz2
nuttx-77a632298aebc2287acf233f6dd998aa8d1f4db8.zip
Support for the older, manual configurations has been completely removed from the NuttX build system
Diffstat (limited to 'nuttx/Makefile.win')
-rw-r--r--nuttx/Makefile.win8
1 files changed, 1 insertions, 7 deletions
diff --git a/nuttx/Makefile.win b/nuttx/Makefile.win
index 9fa1248c2..6583ad86f 100644
--- a/nuttx/Makefile.win
+++ b/nuttx/Makefile.win
@@ -799,10 +799,7 @@ endif
# apps_clean: Perform the clean operation only in the user application
# directory
# apps_distclean: Perform the distclean operation only in the user application
-# directory. Note that the apps\.config file (inf any) is
-# preserved so that this is not a "full" distclean but more of a
-# configuration "reset." (There will not be an apps\.config
-# file if the configuration was generated via make menuconfig).
+# directory.
apps_clean:
ifneq ($(APPDIR),)
@@ -811,8 +808,5 @@ endif
apps_distclean:
ifneq ($(APPDIR),)
- $(call DELFILE, _SAVED_APPS_config
- $(Q) if exist "$(APPDIR)\.config" ( cp "$(APPDIR)\.config" _SAVED_APPS_config )
$(Q) $(MAKE) -C "$(APPDIR)" TOPDIR="$(TOPDIR)" distclean
- $(Q) if exist _SAVED_APPS_config ( mv _SAVED_APPS_config "$(APPDIR)\.config" )
endif