Codebase list nextnet / 4e0c090a-8ea5-4b35-bb56-47bc78a6d80c/upstream Makefile
4e0c090a-8ea5-4b35-bb56-47bc78a6d80c/upstream

Tree @4e0c090a-8ea5-4b35-bb56-47bc78a6d80c/upstream (Download .tar.gz)

Makefile @4e0c090a-8ea5-4b35-bb56-47bc78a6d80c/upstreamraw · history · blame

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


.PHONY: ALL