summaryrefslogtreecommitdiff
path: root/examples/rules.mk
diff options
context:
space:
mode:
authorReinhard Panhuber <[email protected]>2021-04-20 20:15:54 +0200
committerReinhard Panhuber <[email protected]>2021-04-20 20:15:54 +0200
commit705753f448f5cf3b24a6fa49ec02fe1ab0b400aa (patch)
tree49533426ece7ecec32793b48f4e0103c621b07df /examples/rules.mk
parentc7c11b181c05136a1c077dc445f422c7e17edc02 (diff)
parentc5f440a6aa39a09487000e7ce408d252dc7641f0 (diff)
Merge remote-tracking branch 'upstream/master' into uac2_fix_cs_as_int_alt_set_0
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 e5fbee828..2d86d5c79 100644
--- a/examples/rules.mk
+++ b/examples/rules.mk
@@ -5,8 +5,9 @@
# Set all as default goal
.DEFAULT_GOAL := all
-# ESP32-S2 and RP2040 has its own CMake build system
+# ESP32-SX and RP2040 has its own CMake build system
ifneq ($(FAMILY),esp32s2)
+ifneq ($(FAMILY),esp32s3)
ifneq ($(FAMILY),rp2040)
# ---------------------------------------
# GNU Make build system
@@ -136,6 +137,7 @@ else
endif
endif
+endif
endif # GNU Make
# ---------------------------------------