*: add example-app

This commit is contained in:
Eric Chiang
2016-08-08 16:32:42 -07:00
parent 5ce32838d8
commit 467d02738e
3 changed files with 311 additions and 1 deletions

View File

@@ -21,11 +21,14 @@ else
endif
build: bin/poke
build: bin/poke bin/example-app
bin/poke: FORCE
@go install $(REPO_PATH)/cmd/poke
bin/example-app: FORCE
@go install $(REPO_PATH)/cmd/example-app
test:
@go test $(shell go list ./... | grep -v '/vendor/')