网站大量收购独家精品文档,联系QQ:2885784924

Linux原理与应用——专题2:Makefile.ppt

  1. 1、本文档共14页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
武汉大学计算机学院 李文海 lwhaymail@21 GNU Make简介 程序员通过Makefile创建代码生成的规则以便于生成。 规则包含的三个方面: 生成文件自身。当编译时该文件将被创建。 是形成最终可执行文件必需的过程。如将*.c与*.o通过规则关联起来,则*.o将通过*.c得到。 依赖性的列表。任意存在依赖的对象的前导对象在生成之初必需由Makefile指出其所依赖的对象。 一旦定义了依赖,则被依赖的对象的任意修改都将触发依赖对象相应的变化。 一、简单的Makefile # ?all? is the default target. Simply make it point to myprogram all: myprogram # Define the components of the program, and how to link them together my program: io.o init.o compute.o gcc -o myprogram io.o init.o compute.o # Define the dependencies and compile information for the three C source code files compute.o: compute.c gcc –Wall –c –o compute.o compute.c init.o: init.c mycompute.h gcc –Wall –c –o init.o init.c io.o: io.c myprogram.h gcc –Wall –c –o io.o io.c 要素说明 目标文件名由all指示,如上例中的myprogram 冒号左边的项和右边的项具有相同的更新时间,或更近的更新时间 目标文件myprogram与三个目标文件相关联。如果任何一个文件比最终的可运行文件新,那么最终的可运行文件将被重新创建,否则没有必要执行该步 目标文件均有一个入口,用于指明与C文件的依赖性 $ make gcc –Wall –c –o io.o io.c gcc –Wall –c –o init.o init.c gcc –Wall –c –o compute.o compute.c gcc –o myprogram io.o init.o compute.o 若未更新任意目标执行make将无效 二、更巧妙的Makefile 上述Makefile存在的主要问题: gcc命令行选项和每个C源文件设定的依赖性被重复设置 解决方法:使用变量 过程: 使用等号(=)把左边的变量名和右边的变量值分开 在make中,语法上使用$(VARIABLE)获得括号中VARIABLE的值 变量Makefile # Line starting with the pound sign are comments: CC=gcc CFLAGS=-Wall COMPILE=$(CC) $(CFLAGS) –c # ?all? is the default target. Simply make it point to myprogram. all: myprogram #Define the components of the program, and how to link them together. myprogram: io.o init.o compute.o $(CC) –o myprogram io.o init.o compute.o # Define the dependencies and compile information for the three C source code files. compute.o: compute.c $(COMPILE) –o compute.o compute.c init.o: init.c myprogram.h $(COMPILE) –o init.o init.c io.o: io.c myprogram.h $(COMPILE) –c –o io.o io.c 要素说明 若需要添加选项,只需修改CC、CFLAGS和COMPILE COMPILE变量取决于其他两个变量的值 问题:每个C文件的编译项均明确写出 # Lines starting with the pound sign are comments. CC=gcc CFLAGS=-Wall COMPILE=$(CC) $(CFLAGS) –c # ?all? is the default target. Simply make it point to myprogram. all: mypro

文档评论(0)

qingfengxulai + 关注
实名认证
内容提供者

文档来源于网络

1亿VIP精品文档

相关文档