From 68f66c515f87fb1f18ff600bd92885d23864d026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 27 Nov 2020 15:12:57 +0100 Subject: [PATCH] agent-ctl: Add void "install" target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise `make install` run from the top directory would just fail as the target is not defined. Fixes: #1149 Signed-off-by: Fabiano FidĂȘncio --- tools/agent-ctl/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/agent-ctl/Makefile b/tools/agent-ctl/Makefile index ae7332592..54c948a81 100644 --- a/tools/agent-ctl/Makefile +++ b/tools/agent-ctl/Makefile @@ -13,10 +13,13 @@ clean: test: +install: + check: .PHONY: \ build \ test \ check \ + install \ clean