Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920
  1. .PHONY: all test clean build install
  2. GOFLAGS ?= $(GOFLAGS:)
  3. all: install test
  4. build:
  5. @go build $(GOFLAGS) ./...
  6. install:
  7. @go get $(GOFLAGS) ./...
  8. test: install
  9. @go test -v ./...
  10. bench: install
  11. @go test -run=NONE -bench=. $(GOFLAGS) ./...
  12. clean:
  13. @go clean $(GOFLAGS) -i ./...