make: 'make clean' clears sharness too
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
Jakub Sztandera committed
Jul 27, 2016 at 16:26 UTC
c1014aea88d59bb76c904e18cbdd969d430c8998
2 files changed
+3
-1
Makefile
+1
@@ -68,6 +68,7 @@ nofuse: deps
68
69
clean:
70
$(MAKE) -C cmd/ipfs clean
71
+ $(MAKE) -C test clean
72
73
uninstall:
74
$(MAKE) -C cmd/ipfs uninstall
test/Makefile
+2
-1
@@ -20,7 +20,8 @@ global-deps:
20
deps: global-deps bins
21
22
clean:
23
- rm $(BINS)
23
+ $(MAKE) -C sharness clean
24
+ -rm -rf $(BINS)
25
26
bins: $(BINS)
27