17 lines
492 B
Makefile
17 lines
492 B
Makefile
extrautils: \
|
|
filesystem/bin/calc \
|
|
filesystem/bin/cksum \
|
|
filesystem/bin/cur \
|
|
filesystem/bin/grep \
|
|
filesystem/bin/less \
|
|
filesystem/bin/man \
|
|
filesystem/bin/mdless \
|
|
filesystem/bin/mtxt \
|
|
filesystem/bin/rem \
|
|
#filesystem/bin/dmesg filesystem/bin/info filesystem/bin/watch
|
|
|
|
filesystem/bin/%: programs/extrautils/Cargo.toml programs/extrautils/src/bin/%.rs $(BUILD)/libstd.rlib
|
|
mkdir -p filesystem/bin
|
|
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|