其他分享
首页 > 其他分享> > 对 makefile 中 .DEFAULT 的理解

对 makefile 中 .DEFAULT 的理解

作者:互联网

对 makefile 中 .DEFAULT 的理解

 

上例子:

all:gao
    @echo "final"
.DEFAULT:
  @echo "In default"

由于 gao 是一个前提条件,但是 makefile中没有一个名字为 gao的目的。

所以符合 .DEFAULT 目的的执行条件。

故执行结果为:

In default

final

完毕

标签:DEFAULT,makefile,echo,gao,default,理解,final
来源: https://www.cnblogs.com/songhaibin/p/14162495.html