Makefile should clean up after itself

This commit is contained in:
Derek Parker 2015-03-21 17:04:12 -05:00
parent 8ad5639c5e
commit 7ec9240d16

@ -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