Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- .PHONY: all test clean build install
-
- GOFLAGS ?= $(GOFLAGS:)
-
- all: install test
-
- build:
- @go build $(GOFLAGS) ./...
-
- install:
- @go get $(GOFLAGS) ./...
-
- test: install
- @go test -v ./...
-
- bench: install
- @go test -run=NONE -bench=. $(GOFLAGS) ./...
-
- clean:
- @go clean $(GOFLAGS) -i ./...
|