No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
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 ./...