diff --git a/Makefile b/Makefile index aafa78a..ff1ce42 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,11 @@ test: .PHONY: test # Install the program. -# -# By default the program is installed to -# the $GOPATH/bin directory, thus you must -# have it within your $PATH. install: @go install ./... .PHONY: install + +# Build release. +build: + @gox -os="linux darwin windows openbsd" ./... +.PHONY: build