fixed pathing issue

This commit is contained in:
Justin Bollinger
2026-02-01 23:18:54 -05:00
parent 5f43b6cd80
commit c7877baa23

View File

@@ -8,6 +8,11 @@ submodules:
@# Initialize submodules when present
@if [ -f .gitmodules ] && command -v git >/dev/null 2>&1; then \
git submodule update --init --recursive; \
for path in $$(git config --file .gitmodules --get-regexp path | awk '{print $$2}'); do \
if [ -f "$$path/Makefile" ]; then \
$(MAKE) -C "$$path"; \
fi; \
done; \
fi
install: submodules