Add a release target to Makefile

The rest of the reconciliation with new `build` methods will come later.
This commit is contained in:
Joe Beda 2014-10-07 15:35:25 -07:00
parent 1c257cb8db
commit f7e22c104f

View File

@ -83,3 +83,11 @@ clean:
vet:
hack/vet-go.sh $(WHAT) $(TESTS)
.PHONY: vet
# Build a release
#
# Example:
# make clean
release:
build/release.sh
.PHONY: release