什么是make文件?

发布于 2024-09-10 04:04:25 字数 45 浏览 2 评论 0原文

Make文件需要什么?在什么情况下我们必须更改 Brew 应用程序的该文件?

What is the need of Make File? IN which situation we have to alter that file for Brew Application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心房的律动 2024-09-17 04:04:25

makefile 通常用于为项目的设备 (ARM) 构建(使用 Visual Studio 为模拟器构建)。当您进行设备构建时,Visual Studio 将运行 makefile。

The makefile is usually used to build for the device (ARM) build of the project (with visual studio being used to build for the emulator). Visual Studio will run the makefile when you do the device build.

指尖微凉心微凉 2024-09-17 04:04:25

小补充 - Visual Studio 中使用的 makefile 仅用于 MOD1 应用程序,而不用于编译 MOD 应用程序。

Small addition - makefiles used in Visual Studio only for MOD1 application, whereas they aren't used for compiling MOD apps.

明月夜 2024-09-17 04:04:25

正如 joseph 所说,makefile 用于在 Linux 项目中构建源文件,makefile 的优点是您可以编写通用脚本,而不管依赖文件如何。即使您更改文件中的单个文件,也不必再次编译整个源代码。仅重新编译更改的文件,并编译依赖于它们的文件。您可以在 http://sagarsakre 查看有关 makefile 的教程。 blogspot.in/2012/09/understanding-makefile-for-beginners.html .....

As joseph said makefiles are used to build the source files in linux projects, advantage of makefile is you can write a general script irrespective of dependency files. and even if you change a single file in your file then you dont have to compile the whole source code again. only the file which is changed is compiled again and the files which are dependent on them are compiled. you can check out tutorial on the makefile at http://sagarsakre.blogspot.in/2012/09/understanding-makefile-for-beginners.html .....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文