Home  >  Article  >  Operation and Maintenance  >  What does make mean in linux?

What does make mean in linux?

藏色散人
藏色散人Original
2019-05-17 19:30:0112959browse

What does make mean in linux?

make in Linux is used to compile. It reads instructions from the Makefile and then compiles. The function of make is to start source code compilation and provide some functions. These functions are provided by its Makefile settings file.


For example, make install generally means installation, and make uninstall means uninstallation. Without parameters, source code compilation is performed by default.

make is a control program for automated compilation in the Linux development kit. It uses the compilation specifications written in the Makefile to automatically call gcc, ld and run certain required programs for compilation.

Generally, the Makefile control code he uses is generated by the configure setup script based on the given parameters and system environment.

The above is the detailed content of What does make mean in linux?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn