From 44e4d9262c7f264272b4bb7828b5e58a9f077c0e Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 18 Jun 2017 15:59:43 -0600 Subject: [PATCH] Improve clean target, add update --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 951f39b..1306e77 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,9 @@ live: build/livedisk.bin iso: build/livedisk.iso 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 -$(FUMOUNT) build/filesystem/ || true rm -rf build @@ -18,6 +21,13 @@ pull: git submodule update --recursive --init git clean -X -f -d 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 include mk/qemu.mk