summaryrefslogtreecommitdiff
path: root/examples/rules.mk
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2021-04-19 13:01:50 +0700
committerGitHub <[email protected]>2021-04-19 13:01:50 +0700
commit01801c881b464927e4c7e4f67fe0b9cd41bf0e5f (patch)
treedb6a276757962e08eba290abe7113d6616d47ca6 /examples/rules.mk
parentf2874f2431daa0966984310a10d17ae8693944d2 (diff)
parent803b755554a69221f6d05a4b245f24045dfcd644 (diff)
Merge pull request #783 from alisitsyn/esp-based_on_334e95f
WIP: Add new Espressif target esp32s3 for tinyUSB
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
# ---------------------------------------