Update for CTI ps4

Update the Makefile targets for current CTI proposal.

Change-Id: If1c881df259fbac94e8289cd8373d6b20c789484
This commit is contained in:
Dean Troyer 2017-03-09 07:48:15 -06:00
parent ce3bd97613
commit 5620f4d381
1 changed files with 10 additions and 2 deletions

View File

@ -20,7 +20,12 @@ DEST := $(GOPATH)/src/$(PKG)
depend: work
cd $(DEST) && glide install
test: depend
depend-update: work
cd $(DEST) && glide update
test: unit functional
unit: depend
cd $(DEST) && go test -tags=unit ./...
functional:
@ -38,7 +43,10 @@ cover:
docs:
@echo "$@ not yet implemented"
relnotes:
godoc:
@echo "$@ not yet implemented"
releasenotes:
@echo "Reno not yet implemented for this repo"
translation: