8 lines
234 B
Makefile
8 lines
234 B
Makefile
pkgutils: \
|
|
filesystem/bin/pkg
|
|
|
|
filesystem/bin/%: programs/pkgutils/Cargo.toml programs/pkgutils/src/bin/%.rs $(BUILD)/libstd.rlib
|
|
mkdir -p filesystem/bin
|
|
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
|
$(STRIP) $@
|