From f8b974a6a39dd414c7f27edbe9ae03ce9a20629e Mon Sep 17 00:00:00 2001 From: Leon Schuermann Date: Tue, 1 Oct 2024 17:49:34 -0400 Subject: [PATCH] Makefile: sort boards in usage text alphabetically --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 397a7fd5..aac1054c 100644 --- a/Makefile +++ b/Makefile @@ -13,20 +13,20 @@ usage: @echo @echo "The next step is to choose a board to build Tock for. Mainline" @echo "libtock-rs currently includes support for the following platforms:" + @echo " - apollo3" + @echo " - clue_nrf52840" + @echo " - esp32_c3_devkitm_1" @echo " - hail" - @echo " - nrf52840" + @echo " - hifive1" + @echo " - imxrt1050" @echo " - microbit_v2" + @echo " - nrf52" + @echo " - nrf52840" @echo " - nucleo_f429zi" @echo " - nucleo_f446re" @echo " - opentitan" - @echo " - hifive1" - @echo " - nrf52" - @echo " - imxrt1050" - @echo " - apollo3" @echo " - stm32f3discovery" @echo " - stm32f412gdiscovery" - @echo " - esp32_c3_devkitm_1" - @echo " - clue_nrf52840" @echo @echo "Run 'make setup' to setup Rust to build libtock-rs." @echo "Run 'make EXAMPLE=<>' to build EXAMPLE for that board."