Improve clean target, add update
This commit is contained in:
parent
862f6ddbff
commit
44e4d9262c
10
Makefile
10
Makefile
|
@ -8,6 +8,9 @@ live: build/livedisk.bin
|
||||||
iso: build/livedisk.iso
|
iso: build/livedisk.iso
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
cargo clean --manifest-path cookbook/pkgutils/Cargo.toml
|
||||||
|
cargo clean --manifest-path installer/Cargo.toml
|
||||||
|
cargo clean --manifest-path installer/redoxfs/Cargo.toml
|
||||||
cargo clean --manifest-path kernel/Cargo.toml
|
cargo clean --manifest-path kernel/Cargo.toml
|
||||||
-$(FUMOUNT) build/filesystem/ || true
|
-$(FUMOUNT) build/filesystem/ || true
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -18,6 +21,13 @@ pull:
|
||||||
git submodule update --recursive --init
|
git submodule update --recursive --init
|
||||||
git clean -X -f -d
|
git clean -X -f -d
|
||||||
make clean
|
make clean
|
||||||
|
make update
|
||||||
|
|
||||||
|
update:
|
||||||
|
cargo update --manifest-path cookbook/pkgutils/Cargo.toml
|
||||||
|
cargo update --manifest-path installer/Cargo.toml
|
||||||
|
cargo update --manifest-path installer/redoxfs/Cargo.toml
|
||||||
|
cargo update --manifest-path kernel/Cargo.toml
|
||||||
|
|
||||||
# Emulation recipes
|
# Emulation recipes
|
||||||
include mk/qemu.mk
|
include mk/qemu.mk
|
||||||
|
|
Loading…
Reference in a new issue