From f651e68253736b52e6e194eab2cae39e94d82316 Mon Sep 17 00:00:00 2001 From: Anjan Roy Date: Mon, 22 Jan 2024 19:28:17 +0400 Subject: [PATCH] ensure that submodule fetch commands are run while respecting dependency chain Signed-off-by: Anjan Roy --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9f00c88..9432e46 100644 --- a/Makefile +++ b/Makefile @@ -60,13 +60,13 @@ $(BUILD_DIR): $(SHA3_INC_DIR): git submodule update --init -$(DUDECT_INC_DIR): +$(DUDECT_INC_DIR): $(SHA3_INC_DIR) git submodule update --init -$(SUBTLE_INC_DIR): +$(SUBTLE_INC_DIR): $(DUDECT_INC_DIR) git submodule update --init -$(GTEST_PARALLEL): +$(GTEST_PARALLEL): $(SUBTLE_INC_DIR) git submodule update --init $(BUILD_DIR)/%.o: $(TEST_DIR)/%.cpp $(BUILD_DIR) $(SHA3_INC_DIR) $(SUBTLE_INC_DIR)