From 0b59f47c5cf988f44c1abec823a08721a48b7866 Mon Sep 17 00:00:00 2001 From: Vasily Kulikov Date: Wed, 5 Feb 2025 12:08:01 +0300 Subject: [PATCH] fix --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93166ef..cdaa300 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,8 @@ all: test-debug test-release $(addprefix cmake-, $(PRESETS)): cmake-%: cmake --preset $* -$(addsuffix /CMakeCache.txt, $(addprefix build-, $(PRESETS))): build-%/CMakeCache.txt: cmake-% +$(addsuffix /CMakeCache.txt, $(addprefix build-, $(PRESETS))): build-%/CMakeCache.txt: + $(MAKE) cmake-$* # Build using cmake .PHONY: $(addprefix build-, $(PRESETS))