makefile: add rule to build implements tool

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2020-05-04 17:39:22 -04:00 committed by John Mulligan
parent 141cd73223
commit c3b3290fb4

View File

@ -71,6 +71,9 @@ test-bins: test-binaries
%.test: % force_go_build
go test -c ./$<
implements:
go build -o implements ./contrib/implements
# force_go_build is phony and builds nothing, can be used for forcing
# go toolchain commands to always run
.PHONY: build fmt test test-docker check test-binaries test-bins force_go_build