You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ -n "$$current_target" ] && [ "$$current_target" != "$(IDF_TARGET)" ]; then \
60
+
echo "Existing sdkconfig is for target '$$current_target' but IDF_TARGET is '$(IDF_TARGET)'. Removing stale sdkconfig so a fresh one will be created."; \
61
+
rm -f $(BUILD_ROOT)/sdkconfig; \
62
+
fi; \
63
+
fi
55
64
@if [[ ! -f $(BUILD_ROOT)/sdkconfig.defaults ]]; then \
56
65
echo "Run 'make init' first"; \
57
66
exit 1; \
58
67
fi
59
68
@$(call toit-make,esp32)
60
69
70
+
.PHONY: idf-prepare
71
+
idf-prepare:
72
+
@echo "Preparing ESP-IDF for target '$(IDF_TARGET)'"
0 commit comments