You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/03/27 03:29:36 UTC

[incubator-nuttx-apps] branch master updated: Clean *.bdat and *.pdat on clean_context target

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 779502b  Clean *.bdat and *.pdat on clean_context target
779502b is described below

commit 779502b4d9c63f6dec5e98239bb296a129366a21
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Mar 27 10:34:24 2020 +0900

    Clean *.bdat and *.pdat on clean_context target
---
 Makefile                  | 1 +
 builtin/registry/Makefile | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 4ccce99..81f110d 100644
--- a/Makefile
+++ b/Makefile
@@ -154,6 +154,7 @@ depend: .depend
 
 clean_context:
 	$(Q) $(MAKE) -C platform clean_context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
+	$(Q) $(MAKE) -C builtin/registry clean_context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
 
 clean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_clean)
 	$(call DELFILE, $(SYMTABSRC))
diff --git a/builtin/registry/Makefile b/builtin/registry/Makefile
index bf04a87..c4e0466 100644
--- a/builtin/registry/Makefile
+++ b/builtin/registry/Makefile
@@ -55,7 +55,9 @@ depend:
 clean:
 	$(call CLEAN)
 
-distclean: clean
+clean_context:
 	$(call DELFILE, *.bdat)
 	$(call DELFILE, *.pdat)
+
+distclean: clean
 	$(call DELFILE, .updated)