summaryrefslogtreecommitdiff
path: root/examples/rules.mk
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rules.mk')
-rw-r--r--examples/rules.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/rules.mk b/examples/rules.mk
index 461683fad..00ad14292 100644
--- a/examples/rules.mk
+++ b/examples/rules.mk
@@ -6,7 +6,8 @@
.DEFAULT_GOAL := all
# ESP32-SX and RP2040 has its own CMake build system
-ifneq ($(FAMILY),esp32sx)
+ifneq ($(FAMILY),esp32s2)
+ifneq ($(FAMILY),esp32s3)
ifneq ($(FAMILY),rp2040)
# ---------------------------------------
# GNU Make build system
@@ -136,6 +137,7 @@ else
endif
endif
+endif
endif # GNU Make
# ---------------------------------------