ensure that submodule fetch commands are run while respecting dependency chain

Signed-off-by: Anjan Roy <hello@itzmeanjan.in>
This commit is contained in:
Anjan Roy
2024-01-22 19:28:17 +04:00
parent 43d04c28f1
commit f651e68253

View File

@@ -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)