您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- ARCH=$(shell ls $(GOPATH)/pkg | head -n 1)
- PKG=$(GOPATH)/pkg/$(ARCH)/github.com/goanywhere
-
- all: test
-
- clean:
- @find $(PKG) -name 'rex.a' -delete
- @find $(PKG) -name 'rex' -type d -print0|xargs -0 rm -r
-
- build:
- @go get -v ./...
-
- test:
- @go test -v ./...
|