redox/mk/userspace/binutils.mk

10 lines
286 B
Makefile
Raw Normal View History

2017-01-05 22:07:20 +01:00
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) $@