|
@@ -0,0 +1,15 @@
|
|
|
+[tasks.clean]
|
|
|
+command = "cargo"
|
|
|
+args = ["clean"]
|
|
|
+
|
|
|
+[tasks.build]
|
|
|
+command = "cargo"
|
|
|
+args = ["build", "--release"]
|
|
|
+dependencies = ["clean"]
|
|
|
+
|
|
|
+[tasks.bin]
|
|
|
+command = "rust-objcopy"
|
|
|
+args = ["--binary-architecture=riscv64", "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper",
|
|
|
+ "--output-target=binary", "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper.bin"
|
|
|
+]
|
|
|
+dependencies = ["build"]
|