mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
8 lines
252 B
Makefile
8 lines
252 B
Makefile
installer: \
|
|
filesystem/bin/redox_installer
|
|
|
|
filesystem/bin/redox_installer: installer/Cargo.toml installer/src/** $(BUILD)/libstd.rlib
|
|
mkdir -p filesystem/bin
|
|
$(CARGO) rustc --manifest-path $< --bin redox_installer $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|