Makefile: Makefile中的-I

书上是这样解释的:

-I DIR 当包含其他 makefile 文件时,可利用该选项指定搜索目录

读了好多遍都没有懂,结果使我浮想联翩,最后在老师我指导下明白了:

指定目录下(如tmp)的makefile(或者其他名字)在当前Makefile中要有这样一句:include makefile,然后makefile -I tmp时就会在在tmp下找Makefile并把里边的内容添加到当前目录下的Makefile中。

当前目录下的Makefile:

OBJ=main.o fun1.o fun2.o
CC=gcc
CFLAGS=-DDBG

hello: $(OBJ)
	gcc $^ -o hello

include Makefile

tmp目录下的Makefile:

clean:
	rm *.o hello
install:
	cp hello /usr/bin
uninstall:
	rm /usr/bin/hello

在当前目录下执行:

[root@localhost makefile]# make clean
makefile:8: Makefile: 没有那个文件或目录
make: *** 没有规则可以创建目标“Makefile”。 停止。
但是加上这个-I tmp后:

[root@localhost makefile]# make clean -I tmp
rm *.o hello
rm: 无法删除"*.o": 没有那个文件或目录
rm: 无法删除"hello": 没有那个文件或目录
make: *** [clean] 错误 1
[root@localhost makefile]# 

就可以了,是因为它把这个/tmp/Makefile中的内容拷贝到当前目录下的Makefile中了。



你可能感兴趣的:(Linux,应用程序编程)