From f908750db993106d1617bdc84f5135f7911df9a3 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Fri, 8 Mar 2024 14:58:24 +0100 Subject: [PATCH] Makefile: add NO_UTEST Add NO_UTEST to allow the user to disable building utest Signed-off-by: Fabrice Fontaine --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index fa210ad72..c6c7bd2f7 100644 --- a/Makefile +++ b/Makefile @@ -168,9 +168,11 @@ ifndef NO_FBLAS $(MAKE) -C test all endif endif +ifneq ($(NO_UTEST), 1) ifneq ($(ONLY_CBLAS), 1) $(MAKE) -C utest all endif +endif ifneq ($(NO_CBLAS), 1) ifneq ($(ONLY_CBLAS), 1) $(MAKE) -C ctest all