redox/mk/initfs.mk

14 lines
426 B
Makefile
Raw Normal View History

2017-05-11 05:39:05 +02:00
build/initfs.tag: initfs.toml
2017-07-21 03:47:59 +02:00
cd kernel && xargo clean
2017-07-21 04:04:34 +02:00
rm -rf build/initfs
2017-09-27 04:53:08 +02:00
mkdir -p build/initfs
cargo run --manifest-path installer/Cargo.toml -- $(INSTALLER_FLAGS) -c $< build/initfs/
2017-05-11 05:39:05 +02:00
touch $@
build/initfs_live.tag: initfs_live.toml
cd kernel && xargo clean
rm -rf build/initfs_live
mkdir -p build/initfs_live
cargo run --manifest-path installer/Cargo.toml -- $(INSTALLER_FLAGS) -c $< build/initfs_live/
touch $@