summaryrefslogtreecommitdiff
path: root/nuttx/Makefile.unix
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.unix
parent77fb1a3d39743ca53ed17239109b8a82c293205e (diff)
downloadpx4-nuttx-77a632298aebc2287acf233f6dd998aa8d1f4db8.tar.gz
px4-nuttx-77a632298aebc2287acf233f6dd998aa8d1f4db8.tar.bz2
px4-nuttx-77a632298aebc2287acf233f6dd998aa8d1f4db8.zip
Support for the older, manual configurations has been completely removed from the NuttX build system
Diffstat (limited to 'nuttx/Makefile.unix')
-rw-r--r--nuttx/Makefile.unix15
1 files changed, 1 insertions, 14 deletions
diff --git a/nuttx/Makefile.unix b/nuttx/Makefile.unix
index 271bc915a..604da4fd7 100644
--- a/nuttx/Makefile.unix
+++ b/nuttx/Makefile.unix
@@ -802,10 +802,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),)
@@ -814,15 +811,5 @@ endif
apps_distclean:
ifneq ($(APPDIR),)
- $(Q) if [ -r "$(TOPDIR)/$(APPDIR)/.config" ]; then \
- cp "$(TOPDIR)/$(APPDIR)/.config" _SAVED_APPS_config || \
- { echo "Copy of $(APPDIR)/.config failed" ; exit 1 ; } \
- else \
- rm -f _SAVED_APPS_config; \
- fi
$(Q) $(MAKE) -C "$(TOPDIR)/$(APPDIR)" TOPDIR="$(TOPDIR)" distclean
- $(Q) if [ -r _SAVED_APPS_config ]; then \
- mv _SAVED_APPS_config "$(TOPDIR)/$(APPDIR)/.config" || \
- { echo "Copy of _SAVED_APPS_config failed" ; exit 1 ; } \
- fi
endif