您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
255B

  1. ARCH=$(shell ls $(GOPATH)/pkg | head -n 1)
  2. PKG=$(GOPATH)/pkg/$(ARCH)/github.com/goanywhere
  3. all: test
  4. clean:
  5. @find $(PKG) -name 'rex.a' -delete
  6. @find $(PKG) -name 'rex' -type d -print0|xargs -0 rm -r
  7. build:
  8. @go get -v ./...
  9. test:
  10. @go test -v ./...