From c1014aea88d59bb76c904e18cbdd969d430c8998 Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Wed, 27 Jul 2016 16:26:18 +0100 Subject: [PATCH] make: 'make clean' clears sharness too License: MIT Signed-off-by: Jakub Sztandera --- Makefile | 1 + test/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3be03c97b..e9a9eb28a 100644 --- a/Makefile +++ b/Makefile @@ -68,6 +68,7 @@ nofuse: deps clean: $(MAKE) -C cmd/ipfs clean + $(MAKE) -C test clean uninstall: $(MAKE) -C cmd/ipfs uninstall diff --git a/test/Makefile b/test/Makefile index 7b400db36..55b96d143 100644 --- a/test/Makefile +++ b/test/Makefile @@ -20,7 +20,8 @@ global-deps: deps: global-deps bins clean: - rm $(BINS) + $(MAKE) -C sharness clean + -rm -rf $(BINS) bins: $(BINS)