chore: makefile: fmt

This commit is contained in:
Paul Pan 2024-06-14 15:31:39 +08:00
parent f4bb68a6f4
commit a37efbd13f

View File

@ -41,6 +41,9 @@ clippy:
cargo clippy -p utils cargo clippy -p utils
cargo clippy --no-deps $(CARGO_TARGET_ARGS) --manifest-path=kernel/Cargo.toml cargo clippy --no-deps $(CARGO_TARGET_ARGS) --manifest-path=kernel/Cargo.toml
fmt:
cargo fmt --all
test: test:
cargo test -p allocator cargo test -p allocator
cargo test -p utils cargo test -p utils
@ -64,4 +67,4 @@ qemu: kernel
qemu-gdb: kernel qemu-gdb: kernel
$(QEMU) $(QEMU_ARGS) -s -S $(QEMU) $(QEMU_ARGS) -s -S
.PHONY: kernel clippy test kernel-test-dump kernel-asm build-target clean qemu qemu-gdb .PHONY: kernel clippy fmt test kernel-test-dump kernel-asm build-target clean qemu qemu-gdb