make cleanmake mrproermake distclean

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了make cleanmake mrproermake distclean相关的知识,希望对你有一定的参考价值。

make clean、make mrproer 以及make distclean的区别

解压内核源码包后, 到内核源代码目录树的顶层目录, 执行
# make help
Cleaning targets:
  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
  distclean       - mrproper + remove editor backup and patch files
 

make clean                              删除大多数的编译生成文件, 但是会保留内核的配置文件.config, 还有足够的编译支持来建立扩展模块
make mrproper                       删除所有的编译生成文件, 还有内核配置文件, 再加上各种备份文件
make distclean  mrproper    删除的文件, 加上编辑备份文件和一些补丁文件。
 
 
 
---------------------

以上是关于make cleanmake mrproermake distclean的主要内容,如果未能解决你的问题,请参考以下文章

make[1]: 警告:检测到时钟错误。您的创建可能是不完整的

QtCreator Build/Clean 究竟做了啥?

make和make install的区别

关于make

Android系统编译命令make

make clean,make distclean与make depend的区别