mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-06 06:53:39 +00:00
13 lines
311 B
Makefile
13 lines
311 B
Makefile
PROJECT=rust-hello
|
|
TOPDIR=../..
|
|
|
|
all:
|
|
cargo build -r --target riscv32im-unknown-none-elf && ${PREFIX}objcopy target/riscv32im-unknown-none-elf/release/${PROJECT} -O binary ${PROJECT}.bin
|
|
|
|
clean: clean_common
|
|
rm -rf target
|
|
|
|
test: all
|
|
${TOPDIR}/host/host ${PROJECT}.bin
|
|
|
|
include ${TOPDIR}/apps/makefile.common
|