From 5e407758f67f668cebf7628f3c4d6715fb1b85e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 27 Nov 2020 15:11:27 +0100 Subject: [PATCH 1/2] trace-forwarder: 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 --- src/trace-forwarder/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/trace-forwarder/Makefile b/src/trace-forwarder/Makefile index ae73325922..cfb46560ef 100644 --- a/src/trace-forwarder/Makefile +++ b/src/trace-forwarder/Makefile @@ -13,10 +13,13 @@ clean: test: +install: + check: .PHONY: \ build \ test \ check \ + install \ clean 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 2/2] 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 ae73325922..54c948a817 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