From 7ec9240d1654fa4e93d921f96b661ceaae93e2d3 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Sat, 21 Mar 2015 17:04:12 -0500 Subject: [PATCH] Makefile should clean up after itself --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index db4574ef..e1add3be 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ endif test: ifeq "$(UNAME)" "Darwin" go test $(PREFIX)/command $(PREFIX)/dwarf/frame $(PREFIX)/dwarf/op $(PREFIX)/dwarf/util - cd proctl && go test -c $(PREFIX)/proctl && codesign -s $(CERT) ./proctl.test && ./proctl.test + cd proctl && go test -c $(PREFIX)/proctl && codesign -s $(CERT) ./proctl.test && ./proctl.test && rm ./proctl.test else go test ./... endif