MARCH ?= rv32imacbzicntr_zicond_zicsr_zifencei_zihintpause_zilsd_zclsd_zabha_zacas_zbkb_zbkx_zcb_zcmp_zcmt .PHONY: all dump load clean all: trap-test.hex trap-test.o: trap-test.S riscv32-none-elf-as -I../rvcontroller-libraries -march=${MARCH} -o trap-test.o trap-test.S trap-test.elf: trap-test.o riscv32-none-elf-ld -T rvcontroller.ld --no-warn-rwx-segments -o trap-test.elf trap-test.o dump: trap-test.elf riscv32-none-elf-objdump -d trap-test.elf trap-test.hex: trap-test.elf riscv32-none-elf-objcopy -O ihex trap-test.elf trap-test.hex load: trap-test.hex bash -c "wl-copy < trap-test.hex" clean: rm -f trap-test.hex trap-test.elf trap-test.o