Codebase list nextnet / ab1153bd-c566-449d-bb51-c65b38711e05/upstream Makefile
ab1153bd-c566-449d-bb51-c65b38711e05/upstream

Tree @ab1153bd-c566-449d-bb51-c65b38711e05/upstream (Download .tar.gz)

Makefile @ab1153bd-c566-449d-bb51-c65b38711e05/upstreamraw · history · blame

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


.PHONY: ALL