Codebase list nextnet / fresh-snapshots/upstream Makefile
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

Makefile @fresh-snapshots/upstreamraw · history · blame

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


.PHONY: ALL