From 785e1a0932b67136a704f3936bb835999e4b14ff Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Fri, 30 Jan 2015 11:35:14 +0100 Subject: [PATCH] mk: revert "allow application to override clean" This reverts commit ca0038c0094dd8a63fc7595e26d0071a3e3bd72e. It forces clean target of application to have double-colon. As stated in make doc: "Double-colon rules are somewhat obscure and not often very useful" And it's not needed since POSTCLEAN allow to add some clean targets. Reported-by: Olivier Matz Reported-by: John Mcnamara Signed-off-by: Thomas Monjalon --- mk/rte.app.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/rte.app.mk b/mk/rte.app.mk index 4294d9a406..95dbb0b0b7 100644 --- a/mk/rte.app.mk +++ b/mk/rte.app.mk @@ -328,7 +328,7 @@ $(RTE_OUTPUT)/app/$(APP).map: $(APP) # Clean all generated files # .PHONY: clean -clean:: _postclean +clean: _postclean $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS) .PHONY: doclean -- 2.20.1