make deps should be recursive

That way it gets the packages needed by `cmd/ssh-chat/...`
This commit is contained in:
Matt Day 2015-08-20 04:42:29 -06:00
parent 0ab31046c0
commit ebd08408d1

View File

@ -10,7 +10,7 @@ $(BINARY): **/**/*.go **/*.go *.go
go build -ldflags "-X main.buildCommit `git describe --long --tags --dirty --always`" ./cmd/ssh-chat
deps:
go get .
go get ./...
build: $(BINARY)