diff options
| author | robert-hh <robert@hammelrath.com> | 2022-06-04 16:16:22 +0200 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-10-06 22:31:03 +1100 |
| commit | c4f7c0b8a2504e8a13644ea692c4a66d6f124871 (patch) | |
| tree | 7cae8ed1550eb360aa09e80f5314818501714ff2 | |
| parent | a5d5ecbf8434e480b42a8a477ef9ba7979bba927 (diff) | |
samd/Makefile: Alphabetically sort the source code files in Makefile.
| -rw-r--r-- | ports/samd/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ports/samd/Makefile b/ports/samd/Makefile index 4dd6356c1..66e23bae6 100644 --- a/ports/samd/Makefile +++ b/ports/samd/Makefile @@ -83,16 +83,16 @@ LDFLAGS += -L"$(shell dirname $(LIBSTDCPP_FILE_NAME))" endif SRC_C = \ - main.c \ help.c \ + machine_led.c \ + machine_pin.c \ + main.c \ modutime.c \ modmachine.c \ - $(BUILD)/pins.c \ - machine_pin.c \ - machine_led.c \ modsamd.c \ - samd_flash.c \ mphalport.c \ + $(BUILD)/pins.c \ + samd_flash.c \ samd_isr.c \ samd_soc.c \ tusb_port.c \ @@ -130,10 +130,10 @@ endif # List of sources for qstr extraction SRC_QSTR += \ + machine_led.c \ + machine_pin.c \ modutime.c \ modmachine.c \ - machine_pin.c \ - machine_led.c \ modsamd.c \ samd_flash.c \ shared/readline/readline.c \ |
