mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
16 lines
448 B
Makefile
16 lines
448 B
Makefile
drivers: \
|
|
filesystem/sbin/pcid \
|
|
filesystem/sbin/e1000d \
|
|
filesystem/sbin/rtl8168d \
|
|
filesystem/sbin/xhcid
|
|
|
|
initfs/bin/%: drivers/%/Cargo.toml drivers/%/src/** $(BUILD)/libstd.rlib
|
|
mkdir -p initfs/bin
|
|
$(CARGO) rustc --manifest-path $< $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|
|
|
|
filesystem/sbin/%: drivers/%/Cargo.toml drivers/%/src/** $(BUILD)/libstd.rlib
|
|
mkdir -p filesystem/sbin
|
|
$(CARGO) rustc --manifest-path $< $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|