diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | index.html | 7 |
2 files changed, 11 insertions, 0 deletions
@@ -434,6 +434,10 @@ clean-pkg: $(foreach PKG,$(PKGS),$(PKG_DIR)/$($(PKG)_FILE)), \ $(wildcard $(PKG_DIR)/*))) +.PHONY: clean-junk +clean-junk: clean-pkg + rm -rf $(LOG_DIR) $(call TMP_DIR,*) + .PHONY: update define UPDATE $(if $(2), @@ -951,6 +951,13 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre> – use with caution! </dd> + <dt>make clean-junk</dt> + + <dd> + remove all unused files, including unused package + files, temporary folders, and logs + </dd> + <dt>make clean-pkg</dt> <dd> |