From 96e1246bcec70ccd8ed4f215900275edf798acd7 Mon Sep 17 00:00:00 2001 From: Carlos Venegas Date: Mon, 9 Aug 2021 15:37:45 +0000 Subject: [PATCH] makefile: Include kata-deploy targets Use kata-deploy targets from toplevel. This will help if want to build and reinstall just one single kata component. Signed-off-by: Carlos Venegas --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 4d1c49a2e..77267f186 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ TOOLS += agent-ctl STANDARD_TARGETS = build check clean install test vendor include utils.mk +include ./tools/packaging/kata-deploy/local-build/Makefile all: build @@ -33,10 +34,4 @@ generate-protocols: static-checks: build bash ci/static-checks.sh -binary-tarball: - make -f ./tools/packaging/kata-deploy/local-build/Makefile - -install-binary-tarball: - make -f ./tools/packaging/kata-deploy/local-build/Makefile install - .PHONY: all default static-checks binary-tarball install-binary-tarball