redox/mk/userspace/pkgutils.mk

8 lines
234 B
Makefile
Raw Normal View History

2017-01-05 22:07:20 +01:00
pkgutils: \
filesystem/bin/pkg
2017-01-13 23:53:24 +01:00
filesystem/bin/%: programs/pkgutils/Cargo.toml programs/pkgutils/src/bin/%.rs $(BUILD)/libstd.rlib
2017-01-05 22:07:20 +01:00
mkdir -p filesystem/bin
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
$(STRIP) $@