From a6c184d150d006a912ded59fad181d7ec84295d6 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 11 May 2024 13:07:30 +0200 Subject: [PATCH] forward NO_CFLAGS to the CFLAGS, if set --- utest/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utest/Makefile b/utest/Makefile index d4154e0c2..36acf96cd 100644 --- a/utest/Makefile +++ b/utest/Makefile @@ -61,6 +61,10 @@ OBJS = utest_main2.o OBJS_EXT = $(DIR_EXT)/utest_main2.o endif +ifeq ($(NO_CBLAS), 1) +override CFLAGS += -DNO_CBLAS +endif + all : run_test ifeq ($(OSNAME), AIX)