rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit c8a0d06511223b16d6f5ed6c0e6bd606aa4c2c29
parent ceeaebdfe5f652ac958416892e5dcf8d88dd7fdb
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Sat, 22 Apr 2023 13:39:28 +0900

delete unnecessary lines

Diffstat:
Mex1/Makefile | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/ex1/Makefile b/ex1/Makefile @@ -1,6 +1,5 @@ AS = arm-none-eabi-as LD = arm-none-eabi-ld -CC = arm-none-eabi-gcc OBJCOPY = arm-none-eabi-objcopy BINCRC = ../tools/bincrc BIN2UF2 = ../tools/bin2uf2 @@ -16,8 +15,6 @@ clean: rm -f *.o *.elf *.uf2 *.bin cd ../tools && make clean -.c.o: - $(CC) $(CFLAGS) -o $@ $< .s.o: $(AS) $(ASFLAGS) -o $@ $<