Remove Godeps build artifacts on clean

This commit is contained in:
Tim Hockin 2014-09-10 12:06:46 -07:00
parent 60d4770127
commit 57239e32e8

View File

@ -7,6 +7,7 @@
# clean: Clean up.
OUT_DIR = _output
GODEPS_PKG_DIR = Godeps/_workspace/pkg
export GOFLAGS
@ -48,4 +49,5 @@ check test:
# make clean
clean:
rm -rf $(OUT_DIR)
rm -rf $(GODEPS_PKG_DIR)
.PHONY: clean