From 84c28aab00a8ebc95095da308a0cc137f557a8cf Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Sat, 30 Mar 2024 09:22:18 +0100 Subject: [PATCH] src: ensure 'make dep' is called first for 'make check' Signed-off-by: Joachim Wiberg --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index e0acf06b..b295eaed 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,7 +1,7 @@ # Host build of critical components, for Coverity Scan mostly APPS = confd execd factory keyack statd -.PHONY: alla +.PHONY: all all: @echo "*** all not supported, only check possible ***" false @@ -10,7 +10,7 @@ all: dep: (cd libsrx && make -f check.mk dep) -check: $(APPS) +check: dep $(APPS) rm -rf staging $(APPS): libsrx