mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 14:16:47 +00:00
* refacotr: remove all c files Use Rust to implement the symbol table generator. Delete unused header files and c files Adjust the makefile in the debug directory Signed-off-by: Godones <chenlinfeng25@outlook.com> * fix: remove extern "C" rs_* functions move gen_kallsyms.rs to build-scripts Signed-off-by: Godones <chenlinfeng25@outlook.com>
9 lines
223 B
Makefile
9 lines
223 B
Makefile
all:
|
|
@cargo +nightly-2024-11-05 build --release -p gen_kallsyms
|
|
fmt:
|
|
cargo fmt --all $(FMT_CHECK)
|
|
clean:
|
|
@cargo clean
|
|
check:
|
|
@cargo +nightly-2024-11-05 check --workspace $(CARGO_ZBUILD) --message-format=json
|
|
.PHONY: fmt |