在仅使用make命令时,是否需要添加.PHONY目标?
注意:我没有一个名为“ all”的文件
# Do I need this, if no prerequisites
.PHONY somecommands
# Taget with no prerequisites
somecommands:
@echo hello
答案 0 :(得分:1)
.PHONY
。
这是Makefile
:
all:
@echo DONE
尝试测试:
$ make all
DONE
$ touch all
$ make
`all' is up to date.