From 6a1cc74c800f79a184c6548e3feeedef33fdc5e6 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 1 Jan 2018 15:56:56 -0700 Subject: [PATCH] Add distclean target --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index b6edb8f..6815e59 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,15 @@ clean: cargo clean --manifest-path cookbook/pkgutils/Cargo.toml cargo clean --manifest-path installer/Cargo.toml cargo clean --manifest-path kernel/Cargo.toml + cargo clean --manifest-path kernel/syscall/Cargo.toml cargo clean --manifest-path redoxfs/Cargo.toml -$(FUMOUNT) build/filesystem/ || true rm -rf build +distclean: + make clean + cd cookbook && ./unfetch.sh + pull: git pull --recurse-submodules git submodule sync --recursive