それはLinuxカーネルMakefile
で書かれています
clean - Remove most generated files but keep the config and
enough build support to build external modules
mrproper - Remove all generated files + config + various backup files
そしてそれはarch docsに述べられています
準備を完了するには、カーネルツリーが完全にクリーンであることを確認します。
$ make clean && make mrproper
ではmake mrproper
、より完全に削除すると、なぜmake clean
使用されるのでしょうか?
make clean
冗長、右ですか?