[问题] makefile phony target 问题

楼主: anoymouse (没有暱称)   2021-01-25 18:06:08
# Subdirectories to build
SUBDIRS = \
radio \
video \
# RULES
.PHONY : $(SUBDIRS) $(MAKEFILE_LIST)
all : $(SUBDIRS) $(MAKEFILE_LIST)
$(SUBDIRS) :
@echo "Building [email protected]"
$(A)$(MAKE) -C [email protected]
请教一下
all 虽然没有宣告成phony,但这种非真实档案的target,是不是还是可以算是phony,
前提是没有档案叫做all的话?
因为在看GNU make 的手册:
"When one phony target is a prerequisite of another, it serves as a subroutine
of the other."
然后再根据多目标规则,可以等效成:
radio :
@echo "Building [email protected]"
$(A)$(MAKE) -C [email protected]
video :
@echo "Building [email protected]"
$(A)$(MAKE) -C [email protected]
请问这样的理解正确吗?
谢谢
作者: bamchisu (suchi)   2021-01-28 18:17:00
小弟的理解,从头到尾都没有一个叫做all的档案有错请指正
作者: Gold740716 (项为之强)   2021-01-30 13:00:00
我记得要宣告 phony 是因为一些旧的 make 执行完目标后会检查目标档案存在,不宣告为 phony 会出错

Links booklink

Contact Us: admin [ a t ] ucptt.com