eos0/Makefile

9 lines
215 B
Makefile
Raw Normal View History

2024-12-05 18:23:16 +00:00
KERNEL = target/riscv64gc-unknown-none-elf/debug/xv6-riscv-rust
SOURCES := $(shell find -name "*.rs")
$(KERNEL): $(SOURCES)
cargo build
fs.img: mkfs/mkfs README.md $(UPROGS)
mkfs/mkfs fs.img README.md $(UPROGS)