2017-01-05 22:07:20 +01:00
|
|
|
drivers: \
|
|
|
|
filesystem/sbin/pcid \
|
|
|
|
filesystem/sbin/e1000d \
|
2017-01-11 04:49:18 +01:00
|
|
|
filesystem/sbin/rtl8168d \
|
|
|
|
filesystem/sbin/xhcid
|
2017-01-05 22:07:20 +01:00
|
|
|
|
|
|
|
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) $@
|