在Makefile中source脚本
在做项目时,通常会用到Makefile,并且很多脚本数可以重复使用。因此,若在Makefile中source已有的脚本,则方便很多。
然而直接在Makefile中使用source XX.sh
,则terminal显示“make : source:command not found”。一脸懵逼呀!在terminal中输入source xx.sh,正常运行。接下来针对此问题提出解决方法。
原因:makefile的默认shell是/bin/sh,本身不支持source。
方法:指明sh即可。简单吧!
接下来举个栗子,如图1-1所示。
terminal中显示的内容,如图1-2所示。
参考文献:
https://blog.csdn.net/u011614141/article/details/99636835