Skip to content

Instantly share code, notes, and snippets.

@saml
Last active April 26, 2016 15:51
Show Gist options
  • Save saml/2167727a870bc734e07cda2252c5d326 to your computer and use it in GitHub Desktop.
Save saml/2167727a870bc734e07cda2252c5d326 to your computer and use it in GitHub Desktop.
.PHONY: clean test all
all: bin/foo bin/bar
bin/%: pkg/**/*.go cmd/%/*.go
go build -o $@ ./cmd/$(@F)
test:
go fmt ./pkg/... ./cmd/...
go vet ./pkg/... ./cmd/...
golint ./pkg/...
golint ./cmd/...
go test ./pkg/... ./cmd/...
clean:
rm -rf bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment