Codebase list nextnet / upstream/0.0.2 Makefile
upstream/0.0.2

Tree @upstream/0.0.2 (Download .tar.gz)

Makefile @upstream/0.0.2raw · history · blame

ALL:
	@go get github.com/mitchellh/gox && \
	go get -u ./... && \
	go fmt ./... && \
	go vet ./... && \
	go build ./... && \
	go install ./...


.PHONY: ALL