Hook 'build/make-clean.sh' into 'make clean' in Makefile

This commit is contained in:
Joe Beda
2014-10-11 07:34:22 -07:00
parent b2395c76f2
commit 5df3f54204
2 changed files with 6 additions and 4 deletions

View File

@@ -64,6 +64,7 @@ test_e2e:
# Example:
# make clean
clean:
build/make-clean.sh
rm -rf $(OUT_DIR)
rm -rf $(GODEPS_PKG_DIR)
.PHONY: clean
@@ -87,7 +88,7 @@ vet:
# Build a release
#
# Example:
# make clean
# make release
release:
build/release.sh
.PHONY: release