From 261c210c9c4c1e55103a7af31dfcc539c0e0e5cc Mon Sep 17 00:00:00 2001 From: Jacques Comeaux Date: Fri, 19 Jan 2024 16:41:29 -0600 Subject: Add subroutine for printing hexadecimal word --- Makefile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index 3529884..0000000 --- a/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -all: build - -build: echo.uf2 - -echo.uf2: echo.elf - ./elf2uf2 echo.elf echo.uf2 - -objects = main.o xosc.o clocks.o gpio.o uart.o - -echo.elf: $(objects) - arm-none-eabi-ld -T pico_ram_only.ld -o echo.elf $(objects) - -$(objects): %.o: %.s - arm-none-eabi-as -o $@ $< - -clean: - rm echo.elf echo.uf2 *.o -- cgit v1.2.3