aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 0 insertions, 17 deletions
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