Makefile的call函数

来源:互联网 发布:淘宝新赛欧改折叠钥匙 编辑:程序博客网 时间:2024/05/16 14:33

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

[plain] view plaincopy
  1. #define a multiline variable  
  2. define target   
  3.     echo $@  
  4.     echo $@  
  5. endef  
  6.   
  7. #define the target which is the first target, so default target  
  8. all:  
  9.     $(call target,all)  
  10.   
  11. #define the second target, we must explicitly make it  
  12. clean:  
  13.     $(call target,clean)      
  14.   
  15. #declare that all and clean are phony targets  
  16. .PHONY: all clean  

执行make或make all的结果是:

[plain] view plaincopy
  1. echo all  //因为Makefile默认会显示每条命令,所以echo $@这条命令语句也会显示出来,如果不想显示,前面加@
  2. all  
  3. echo all  
  4. all  


执行make clean的结果是:

[plain] view plaincopy
  1. echo clean  
  2. clean  
  3. echo clean    
  4. clean  

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

[plain] view plaincopy
  1. #define a multiline variable  
  2. define target   
  3.     echo $@  
  4.     echo $@  
  5. endef  
  6.   
  7. #define the target which is the first target, so default target  
  8. all:  
  9.     $(call target)  
  10.   
  11. #define the second target, we must explicitly make it  
  12. clean:  
  13.     $(call target)    
  14.   
  15. #declare that all and clean are phony targets  
  16. .PHONY: all clean  

结果跟上面一样。


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

0 0