mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
10 lines
286 B
Makefile
10 lines
286 B
Makefile
binutils: \
|
|
filesystem/bin/hex \
|
|
filesystem/bin/hexdump \
|
|
filesystem/bin/strings
|
|
|
|
filesystem/bin/%: programs/binutils/Cargo.toml programs/binutils/src/bin/%.rs $(BUILD)/libstd.rlib
|
|
mkdir -p filesystem/bin
|
|
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|