BuildSystem: add proper clean target

This commit is contained in:
Bananymous 2023-11-12 01:09:31 +02:00
parent bfe6d60e9e
commit 5362962d9a
1 changed files with 5 additions and 0 deletions

View File

@ -92,6 +92,11 @@ case $1 in
check-fs)
$BANAN_SCRIPT_DIR/check-fs.sh
;;
clean)
build_target clean
rm -f $FAKEROOT_FILE
rm -rf $BANAN_SYSROOT
;;
*)
build_target $1
;;