From fc8185b5f3851a1562ef564ce005037e0385cea6 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 1 Jun 2019 14:28:49 +0200 Subject: [PATCH] - clean.mk: add target to cleanup $(HOST_DIR)/bin from *-config files --- make/clean.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/make/clean.mk b/make/clean.mk index ad0ba2c5..f5d1496a 100644 --- a/make/clean.mk +++ b/make/clean.mk @@ -15,6 +15,9 @@ deps-clean: host-clean: -rm -rf $(HOST_DIR) +host-bin-config-clean: + -find $(HOST_DIR)/bin -name *-config ! -name pkg-config -delete + staging-clean: -rm -rf $(STAGING_DIR) @@ -31,7 +34,7 @@ ccache-clean: @echo "Clearing $$CCACHE_DIR" @$(CCACHE) -C -rebuild-clean: target-clean deps-clean +rebuild-clean: target-clean deps-clean host-bin-config-clean -rm -rf $(BUILD_TMP) all-clean: rebuild-clean staging-clean host-clean static-base-clean @@ -55,6 +58,7 @@ PHONY += cross-base-clean PHONY += cross-clean PHONY += deps-clean PHONY += host-clean +PHONY += host-bin-config-clean PHONY += staging-clean PHONY += static-base-clean PHONY += static-clean