summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/rp2/Makefile10
-rw-r--r--py/mkrules.cmake7
2 files changed, 16 insertions, 1 deletions
diff --git a/ports/rp2/Makefile b/ports/rp2/Makefile
index 461a27aca..a41bda760 100644
--- a/ports/rp2/Makefile
+++ b/ports/rp2/Makefile
@@ -19,7 +19,7 @@ CMAKE_ARGS += -DMICROPY_FROZEN_MANIFEST=${FROZEN_MANIFEST}
endif
all:
- [ -d $(BUILD) ] || cmake -S . -B $(BUILD) -DPICO_BUILD_DOCS=0 ${CMAKE_ARGS}
+ [ -e $(BUILD)/CMakeCache.txt ] || cmake -S . -B $(BUILD) -DPICO_BUILD_DOCS=0 ${CMAKE_ARGS}
$(MAKE) $(MAKESILENT) -C $(BUILD)
clean:
@@ -28,4 +28,12 @@ clean:
GIT_SUBMODULES += lib/mbedtls lib/pico-sdk lib/tinyusb
submodules:
+ifeq ($(BOARD),PICO)
+ # Run the standard submodules target with minimum required submodules above
$(MAKE) -f ../../py/mkrules.mk GIT_SUBMODULES="$(GIT_SUBMODULES)" submodules
+else
+ # Run submodules task through cmake interface to pick up any board specific dependencies.
+ GIT_SUBMODULES=$$(cmake -B $(BUILD)/submodules -DECHO_SUBMODULES=1 -DGIT_SUBMODULES="$(GIT_SUBMODULES)" ${CMAKE_ARGS} -S . 2>&1 | \
+ grep 'GIT_SUBMODULES=' | cut -d= -f2); \
+ $(MAKE) -f ../../py/mkrules.mk GIT_SUBMODULES="$${GIT_SUBMODULES}" submodules
+endif
diff --git a/py/mkrules.cmake b/py/mkrules.cmake
index 261e15369..d0dc01962 100644
--- a/py/mkrules.cmake
+++ b/py/mkrules.cmake
@@ -178,3 +178,10 @@ if(MICROPY_FROZEN_MANIFEST)
VERBATIM
)
endif()
+
+# Update submodules
+if(ECHO_SUBMODULES)
+ # If cmake is run with GIT_SUBMODULES defined on command line, process the port / board
+ # settings then print the final GIT_SUBMODULES variable as a fatal error and exit.
+ message(FATAL_ERROR "GIT_SUBMODULES=${GIT_SUBMODULES}")
+endif()