diff --git a/docs/en/docs/ApplicationDev/using-make-for-compilation.md b/docs/en/docs/ApplicationDev/using-make-for-compilation.md index a00b04ec6df7879dbcd1c76bfb0f0e6948961060..be379061f0cf619506b0a5fad8a50cf818202922 100644 --- a/docs/en/docs/ApplicationDev/using-make-for-compilation.md +++ b/docs/en/docs/ApplicationDev/using-make-for-compilation.md @@ -217,7 +217,7 @@ _target_ : target specified in Makefile. ## Makefiles -Make is a tool that uses makefiles for compilation, linking, installation, and cleanup, so as to generate executable files and other related files from source code files. Therefore, makefiles describe the compilation and linking rules of the entire project, including which files need to be compiled, which files do not need to be compiled, which files need to be compiled first, which files need to be compiled later, and which files need to be rebuilt. The makefiles automate project compilation. You do not need to manually enter a large number of source files and parameters each time. +Make is a tool that uses makefiles for compilation, linking, installation, and cleanup, so as to generate executable files and other related files from source code files. Therefore, Makefiles describe the compilation and linking rules of the entire project, including which files need to be compiled, which files do not need to be compiled, which files need to be compiled first, which files need to be compiled later, and which files need to be rebuilt. The Makefiles automate project compilation. You do not need to manually enter a large number of source files and parameters each time. This chapter describes the structure and main contents of makefiles. For more information about makefiles, run the **info make** command.