eos0/Makefile

8 lines
151 B
Makefile
Raw Permalink Normal View History

2024-12-05 22:58:05 +00:00
KERNEL = target/riscv64gc-unknown-none-elf/debug/kernel
SOURCES := $(shell find . -name "*.rs")
2024-12-05 18:23:16 +00:00
2024-12-05 22:58:05 +00:00
.PHONY: $(KERNEL)
2024-12-05 18:23:16 +00:00
2024-12-05 22:58:05 +00:00
$(KERNEL): $(SOURCES)
cargo rustc