什么是make文件?
Make文件需要什么?在什么情况下我们必须更改 Brew 应用程序的该文件?
What is the need of Make File? IN which situation we have to alter that file for Brew Application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
小补充 - 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.
正如 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 .....