Clean *.bdat and *.pdat on clean_context target

This commit is contained in:
YAMAMOTO Takashi 2020-03-27 10:34:24 +09:00 committed by Xiang Xiao
parent 9dca031f26
commit 779502b4d9
2 changed files with 4 additions and 1 deletions

View File

@ -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))

View File

@ -55,7 +55,9 @@ depend:
clean:
$(call CLEAN)
distclean: clean
clean_context:
$(call DELFILE, *.bdat)
$(call DELFILE, *.pdat)
distclean: clean
$(call DELFILE, .updated)