aboutsummaryrefslogtreecommitdiff
path: root/hexedit/Makefile
blob: 4712bd167a601d1df3ef89783b13b279bf4b629c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all: build

build: hexedit.uf2

hexedit.uf2: hexedit.elf
	../elf/elf2uf2 hexedit.elf hexedit.uf2

objects = hexedit.o main.o

hexedit.elf: $(objects)
	arm-none-eabi-ld -T pico_ram_only.ld -o hexedit.elf $(objects) ../setup/setup.so

$(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 2s
	cat hexedit.uf2 > /dev/disk/by-label/RPI-RP2