From 76d123d5750e55f664655a927ccdaf3f59a5b0d6 Mon Sep 17 00:00:00 2001 From: Jim Cromie Date: Tue, 16 Jul 2024 17:17:24 -0600 Subject: [PATCH] Makefile - add install-top-only target Add a target that does BUILD_VIRTME_NG_INIT=0 make rather than the full monty (with =1). This is slightly lighter weight. Perhaps we need a recursive make ? Signed-off-by: Jim Cromie --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 35e0928..9a17a89 100644 --- a/Makefile +++ b/Makefile @@ -12,3 +12,7 @@ install: install_from_source install_from_source: @echo "Version: $(GIT_DESCRIBE)" BUILD_VIRTME_NG_INIT=1 pip3 install --verbose -r requirements.txt $(INSTALL_ARGS) . + +install_only_top: + @echo "Version: $(GIT_DESCRIBE)" + BUILD_VIRTME_NG_INIT=0 pip3 install --verbose -r requirements.txt $(INSTALL_ARGS) .