mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
13 lines
353 B
Makefile
13 lines
353 B
Makefile
userutils: \
|
|
filesystem/bin/getty \
|
|
filesystem/bin/id \
|
|
filesystem/bin/login \
|
|
filesystem/bin/passwd \
|
|
filesystem/bin/su \
|
|
filesystem/bin/sudo
|
|
|
|
filesystem/bin/%: programs/userutils/Cargo.toml programs/userutils/src/bin/%.rs $(BUILD)/libstd.rlib
|
|
mkdir -p filesystem/bin
|
|
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|