You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ARCH=$(shell ls $(GOPATH)/pkg | head -n 1)
- PKG=$(GOPATH)/pkg/$(ARCH)/github.com/goanywhere
-
- all: test
- @echo $HOST
-
- 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 ./...
|