diff options
| author | Ha Thach <[email protected]> | 2021-04-19 13:01:50 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-19 13:01:50 +0700 |
| commit | 01801c881b464927e4c7e4f67fe0b9cd41bf0e5f (patch) | |
| tree | db6a276757962e08eba290abe7113d6616d47ca6 /examples/rules.mk | |
| parent | f2874f2431daa0966984310a10d17ae8693944d2 (diff) | |
| parent | 803b755554a69221f6d05a4b245f24045dfcd644 (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.mk | 4 |
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 # --------------------------------------- |
