1
0
mirror of https://github.com/olofk/serv.git synced 2026-01-20 09:34:48 +00:00
olofk.serv/sw/Makefile
2025-03-01 10:32:57 +01:00

12 lines
287 B
Makefile

TOOLCHAIN_PREFIX?=riscv64-unknown-elf-
%.elf: %.S link.ld
$(TOOLCHAIN_PREFIX)gcc -nostartfiles -nostdlib -march=rv32i_zicsr -mabi=ilp32 -Tlink.ld -o$@ $<
%.bin: %.elf
$(TOOLCHAIN_PREFIX)objcopy -O binary $< $@
%.hex: %.bin
python3 makehex.py $< > $@
clean:
rm -f *.elf *.bin *.hex