Makefile里主要包含5个东西:显式规则、隐晦规则、变量定义、文件指示和注释
1、显式规则:显式规则说明如恶化生成一个或多的目标文件,包含要生成的文件,文件的依赖文件,生成的命令
2、隐晦规则:由make自动推动功能完成
3、变量定义:变量一般都是字符串,类似C语言中的宏定义,当Makefile被执行时,其中的变量都会被扩展到相应的引用位置上
4、文件指示:
5、注释:Makefile中只有行注释,其注释是用"#"字符,如果在Makefile中使用"#"字符,可以用反斜框进行转义
在Makefile中的命令,必须要以[Tab]键开始
默认情况下,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使用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,make会把这个变量中的值作为一个类似于include的动作。
建议不要使用这个环境变量,一旦被定义,所有makefile都会受影响
make工作的执行步骤如下:
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是文件名,以空格分开,可以使用通配符。
如果命令太长,可以使用反斜杠作为换行符。
原文地址:http://www.cnblogs.com/gsblog/p/3799873.html