aboutsummaryrefslogtreecommitdiff
path: root/hexedit/Makefile
diff options
context:
space:
mode:
authorJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-06-04 19:28:25 -0500
committerJacques Comeaux <jacquesrcomeaux@protonmail.com>2024-06-04 19:28:25 -0500
commitf2f186c3594a922e51abf25b24052c61f833a2bf (patch)
treea4cd5bb88adc8b94582ed40a8a7ad04235a9db69 /hexedit/Makefile
parentb38a844ed9f6ad17d58db3e143ebc0c858762ec6 (diff)
Rename stage 0 editor
Diffstat (limited to 'hexedit/Makefile')
-rw-r--r--hexedit/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/hexedit/Makefile b/hexedit/Makefile
deleted file mode 100644
index dd70409..0000000
--- a/hexedit/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-all: build
-
-build: hexedit.uf2
-
-hexedit.uf2: hexedit.elf
- ../elf/elf2uf2 hexedit.elf hexedit.uf2
-
-objects = uart.o main.o hexedit.o
-
-hexedit.elf: $(objects)
- arm-none-eabi-ld -T pico_persist.ld -o hexedit.elf $(objects) ../setup/setup.so
- ./checksum_pico_elf.py hexedit.elf
-
-$(objects): %.o: %.s
- arm-none-eabi-as -o $@ $<
-
-clean:
- rm hexedit.elf hexedit.uf2 *.o
-
-flash: hexedit.uf2
- [ -h /dev/disk/by-label/RPI-RP2 ] || sleep 3s
- cat hexedit.uf2 > /dev/disk/by-label/RPI-RP2