Chinaunix首页 | 论坛 | 博客
  • 博客访问: 398983
  • 博文数量: 75
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 645
  • 用 户 组: 普通用户
  • 注册时间: 2015-06-03 18:24
文章分类

全部博文(75)

文章存档

2019年(1)

2018年(20)

2017年(14)

2016年(10)

2015年(30)

分类: LINUX

2018-03-12 23:50:10

include指示符告诉make暂停读取当前的makefile,转去读取“include”指定的一个或者多个文件,完成以后再继续当前makefile的读取。

 

格式

Include FILENAMES...

 

例子:

文件makefile

 

ifdef _ERROR_

$(error "find a error!")

endif

 

include a.mk b.mk

 

_test_:

ls -l

 

文件a.mk

$(warning "this is a.mk")

 

 

文件b.mk

$(warning "this is b.mk")

 

执行结果:

tay@tay:/mnt/hgfs/hzs/make_file$ make

a.mk:1: "this is a.mk"

b.mk:1: "this is b.mk"

ls -l

总用量 2

-rwxrwxrwx 1 root root 27  311 23:30 a.mk

-rwxrwxrwx 1 root root 27  311 23:30 b.mk

-rwxrwxrwx 1 root root 82  311 23:30 Makefile

 

 

 

Include-include的区别

使用include FILENAMES...,make程序处理时,如果“FILENAMES”列表中的任何一个文件不能正常读取时,make程序将会提示错误并退出。

 

使用-include FILENAMES...,当所包含的文件不存在,make程序会继续执行。

 

 

阅读(623) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~