Makefile: no need to build protos binary

For the standard make target, there is no need to build the protoc
plugin binary. This can be built automatically in response to the `make
protos` target.

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2017-07-18 17:16:03 -07:00
parent 805654abc7
commit e3a07b5673
No known key found for this signature in database
GPG Key ID: 67B3DED84EDC823F

View File

@ -28,7 +28,7 @@ INTEGRATION_PACKAGE=${PKG}
TEST_REQUIRES_ROOT_PACKAGES=$(shell for f in $$(git grep -l testutil.RequiresRoot | grep -v Makefile);do echo "${PKG}/$$(dirname $$f)"; done)
# Project binaries.
COMMANDS=ctr containerd protoc-gen-gogoctrd
COMMANDS=ctr containerd
ifneq ("$(GOOS)", "windows")
COMMANDS += containerd-shim
endif