Makefile的call函数

写了个例子来研究Makefile的call函数:

#define a multiline variable
define target 
	echo $@
	echo $@
endef

#define the target which is the first target, so default target
all:
	$(call target,all)

#define the second target, we must explicitly make it
clean:
	$(call target,clean)	

#declare that all and clean are phony targets
.PHONY: all clean

执行make或make all的结果是:

echo all
all
echo all
all


执行make clean的结果是:

echo clean
clean
echo clean	
clean

其实源代码可以这么写的:

#define a multiline variable
define target 
	echo $@
	echo $@
endef

#define the target which is the first target, so default target
all:
	$(call target)

#define the second target, we must explicitly make it
clean:
	$(call target)	

#declare that all and clean are phony targets
.PHONY: all clean

结果跟上面一样。


小结:Makefile中的第一个目标是最终目标,是make默认执行的目标,call函数会以此调用多行变量的每一个(此处是make命令,所以会被执行了)。然后$@自动化变量在make执行是会被赋值为当前的目标。

  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值