瀏覽代碼

feat: use cargo-make as task flow tool

guttatus 7 月之前
父節點
當前提交
0a159b8a94
共有 5 個文件被更改,包括 15 次插入16 次删除
  1. 0 4
      Cargo.lock
  2. 0 3
      Cargo.toml
  3. 15 0
      Makefile.toml
  4. 0 6
      xtask/Cargo.toml
  5. 0 3
      xtask/src/main.rs

+ 0 - 4
Cargo.lock

@@ -206,7 +206,3 @@ name = "unicode-ident"
 version = "1.0.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
-
-[[package]]
-name = "xtask"
-version = "0.1.0"

+ 0 - 3
Cargo.toml

@@ -29,9 +29,6 @@ name = "rustsbi-prototyper"
 test = false
 bench = false
 
-[workspace]
-members = ["xtask"]
-
 [workspace.package]
 edition = "2021"
 license = "MulanPSL-2.0 OR MIT"

+ 15 - 0
Makefile.toml

@@ -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"]

+ 0 - 6
xtask/Cargo.toml

@@ -1,6 +0,0 @@
-[package]
-name = "xtask"
-version = "0.1.0"
-edition = "2021"
-
-[dependencies]

+ 0 - 3
xtask/src/main.rs

@@ -1,3 +0,0 @@
-fn main() {
-    println!("Hello, world!");
-}