4
0

Makefile.toml 876 B

12345678910111213141516171819202122232425262728
  1. [config]
  2. default_to_workspace = false
  3. [tasks.clean]
  4. command = "cargo"
  5. args = ["clean"]
  6. [tasks.prototyper-build]
  7. command = "cargo"
  8. args = ["build", "-prustsbi-prototyper", "--release"]
  9. [tasks.prototyper]
  10. command = "rust-objcopy"
  11. args = ["--binary-architecture=riscv64", "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper",
  12. "--output-target=binary", "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper.bin"
  13. ]
  14. dependencies = ["prototyper-build"]
  15. [tasks.test-kernel-build]
  16. command = "cargo"
  17. args = ["build", "-prustsbi-test-kernel", "--release"]
  18. [tasks.test-kernel]
  19. command = "rust-objcopy"
  20. args = ["--binary-architecture=riscv64", "target/riscv64imac-unknown-none-elf/release/rustsbi-test-kernel",
  21. "--output-target=binary", "target/riscv64imac-unknown-none-elf/release/rustsbi-test-kernel.bin"
  22. ]
  23. dependencies = ["test-kernel-build"]