无法在GNU Makefile中更改.PHONY目标的先决条件名称

时间:2017-07-09 20:52:12

标签: makefile gnu

有人可以解释原因 正在运行make clean 打印

  

目标清洁

以下makefile

.PHONY: all
all: clean

clean:
    echo "Target clean"

但是正在运行

  

make clean_local

抛出异常

  

没有规则可以制作目标' clean_local'

当我将makefile更改为

.PHONY: all
all: clean_local

clean_local:
    echo "Target clean_local"

0 个答案:

没有答案