aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMarco Varlese <marco.varlese@suse.com>2017-11-22 16:46:58 +0100
committerDave Wallace <dwallacelf@gmail.com>2017-11-23 13:24:18 +0000
commitb328f36d08b739a1ec0c6b777431be3fefa7c3cb (patch)
treee632a64bff8d096bc1a0f64901f62c938cd5cae6 /Makefile
parentbadeb95bcbb1352d4e5ab97e6524a5ef6f743240 (diff)
Tests clean-up when cleaning VPP code.
Tests are not cleaned when running "make wipe". However, it makes sense to clean tests too since the "tested code" has been wiped and - likely - will be rebuilt with new/extra features/requirements. Change-Id: I34cc188e78f51d327f78f3d43cea5a82fdc6fb25 Signed-off-by: Marco Varlese <marco.varlese@suse.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fcce193c3f6..f8c93be6779 100644
--- a/Makefile
+++ b/Makefile
@@ -324,7 +324,7 @@ build: $(BR)/.bootstrap.ok
wipedist:
@$(RM) $(BR)/*.tar.xz
-wipe: wipedist $(BR)/.bootstrap.ok
+wipe: wipedist test-wipe $(BR)/.bootstrap.ok
$(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
rebuild: wipe build
@@ -332,7 +332,7 @@ rebuild: wipe build
build-release: $(BR)/.bootstrap.ok
$(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
-wipe-release: $(BR)/.bootstrap.ok
+wipe-release: test-wipe $(BR)/.bootstrap.ok
$(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
rebuild-release: wipe-release build-release