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:)
- ARCH=$(shell ls $(GOPATH)/pkg | head -n 1)
- PKG=$(GOPATH)/pkg/$(ARCH)/github.com/goanywhere
-
- all: test build
-
- clean:
- @find $(PKG) -name 'rex.a' -delete
- @find $(PKG) -name 'rex' -type d -print0|xargs -0 rm -r
-
- build: clean
- @go get -v ./...
-
- test:
- @go test -v ./...
-
- bench: install
- @go test -run=NONE -bench=. $(GOFLAGS) ./...
|