From b8b371057405a3f3a87ffaeabc888617c2578de2 Mon Sep 17 00:00:00 2001 From: cjbzl Date: Fri, 6 Jun 2025 02:06:27 +0000 Subject: [PATCH] English Translation Signed-off-by: cjbzl --- docs/en/docs/ApplicationDev/using-make-for-compilation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/ApplicationDev/using-make-for-compilation.md b/docs/en/docs/ApplicationDev/using-make-for-compilation.md index a00b04ec6..be379061f 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. -- Gitee