apps/Application.mk: If a loadable module is generated the we need to add logic to remove the loadable module in the 'make clean' logic.

This commit is contained in:
Gregory Nutt 2018-08-17 16:31:35 -06:00
parent 8455ee34b6
commit 08263367bc

View File

@ -145,6 +145,9 @@ endif
depend: .depend
clean:
ifeq ($(LOADABLE),y)
$(call DELFILE, $(APPNAME))
endif
$(call DELFILE, .built)
$(call CLEAN)