码迷,mamicode.com
首页 > 其他好文 > 详细

Makefile持续学习二

时间:2014-06-23 00:53:52      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:class   blog   tar   com   get   使用   

Makefile概述


 

一、Makefile里有什么?

Makefile里主要包含5个东西:显式规则、隐晦规则、变量定义、文件指示和注释

1、显式规则:显式规则说明如恶化生成一个或多的目标文件,包含要生成的文件,文件的依赖文件,生成的命令

2、隐晦规则:由make自动推动功能完成

3、变量定义:变量一般都是字符串,类似C语言中的宏定义,当Makefile被执行时,其中的变量都会被扩展到相应的引用位置上

4、文件指示:

  • 在一个Makefile中引用另一个Makefile
  • 根据某些情指定Makefile中的有效部分
  • 定义一个多行的命令

5、注释:Makefile中只有行注释,其注释是用"#"字符,如果在Makefile中使用"#"字符,可以用反斜框进行转义

在Makefile中的命令,必须要以[Tab]键开始

二、 Makefile的文件名

默认情况下,make命令会在当前目录下按顺序找寻文件名为“GNUmakefile”、"makefile"、"Makefile"

推荐使用Makefile

当然支持使用别的文件名,使用的时候需要指定file参数

[root@typhoeus79 makefile]# make -f aMakefile
gcc    -c -o test.o test.c
gcc    -c -o printInt.o printInt.c
gcc    -c -o printWord.o printWord.c
gcc -o test test.o printInt.o printWord.o
[root@typhoeus79 makefile]# make --file aMakefile clean
rm -rf test.o printInt.o printWord.o test

 三、引用其它的Makefile

在Makefile使用include关键字可以把别的Makefile包含进来

[root@typhoeus79 makefile]# more Makefile         
OBJS = test.o printWord.o printInt.o
CC = gcc

test: $(OBJS)
        $(CC) -o test $(OBJS)

#include
include printIntMakefile


test.o:printWord.h

.PHONY: clean
clean:
        rm -rf $(OBJS) test
[root@typhoeus79 makefile]# more printIntMakefile         
printInt.o: printInt.h
[root@typhoeus79 makefile]# make
gcc    -c -o test.o test.c
gcc    -c -o printWord.o printWord.c
gcc    -c -o printInt.o printInt.c
gcc -o test test.o printWord.o printInt.o
[root@typhoeus79 makefile]# make clean
rm -rf test.o printWord.o printInt.o test

 make会在当前目录下首先查找,如果没有找到,会如下几个目录中寻找:

1、"-I"或者"--include-dir"参数,make就会在这个参数所指定的目录下寻找

2、如果目录<prefix>/include(一般是:/usr/lcoal/bin或者/usr/include)存在的话,make也会去找。

如果都没有找到的话,make会生成一条警告信息,但不会马上出现致命错误。

 

-include <filename>
无论include过程中出现什么错误,都不要报错继续执行

 四、环境变量MAKEFILES

 如果当前环境中定义环境变量MAKEFILES,make会把这个变量中的值作为一个类似于include的动作。

建议不要使用这个环境变量,一旦被定义,所有makefile都会受影响

 

五、make的工作方式

 make工作的执行步骤如下:

  1. 读入所有的Makefile
  2. 读入被include的其他Makefile
  3. 初始化文件中的变量
  4. 推动隐晦规则,并分析所有规则
  5. 为所有的目标文件创建依赖关系链
  6. 根据依赖关系,决定哪些目标要重新生成
  7. 执行生成命令

 1-5为第一阶段,6-7为第二阶段。

第一个阶段中,如果定义的变量被使用了,make会把其展开在使用的位置,但make并不会完全马上展开,make使用的是拖延战术

如果变量出现在依赖关系的规则中,那么仅当这条依赖被决定要使用,变量才会在其内部展开。

 

书写规则


 

规则包含两个部分,一个是依赖关系,一个是生成目标的方法

Makefile中只应该有一个最终目标,其它的目标都是被这个目标所连带出来的。

 一、规则举例

printInt.o: printInt.c printInt.h
        gcc -c -g printInt.c

 printInt.o是目标,printInt.c和printInt.h是目标所依赖的源文件,只有一个命令“gcc -c -g printInt.c”(以Tab键开头)

这条规则告诉两件事:

1、文件的依赖关系,如果printInt.c和printInt.h的mtime比printInt.o新的话,或者printInt.o不存在,那么依赖关系发生

2、如何生成目标文件

 二、规则的语法

targets : prerequisties
command

或者

targets : prerequisties;command 
command

targets是文件名,以空格分开,可以使用通配符。

如果命令太长,可以使用反斜杠作为换行符。

三、在规则中使用通配符

 

Makefile持续学习二,布布扣,bubuko.com

Makefile持续学习二

标签:class   blog   tar   com   get   使用   

原文地址:http://www.cnblogs.com/gsblog/p/3799873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!