当前位置 : 主页 > 手机开发 > 其它 >

build-process – 指定为多个规则的依赖项时重新执行目标

来源:互联网 收集:自由互联 发布时间:2021-06-22
我有以下GNU makefile: .PHONY a b c da: b cb: dc: dd: echo HI 我希望目标’d’能够运行两次 – 因为它被b和amp指定为依赖关系. C.不幸的是,目标’d’只会被执行一次.运行make的输出将只是’HI’
我有以下GNU makefile:

.PHONY a b c d

a: b c
b: d
c: d
d:
    echo HI

我希望目标’d’能够运行两次 – 因为它被b和amp指定为依赖关系. C.不幸的是,目标’d’只会被执行一次.运行make的输出将只是’HI’,而不是’HI HI’.

我怎样才能解决这个问题?

谢谢!

要澄清,目标是这样的:

subdirs =  a b c

build: x y

x: target=build
x: $(subdirs)

y: target=prepare
y: $(subdirs)

$(subdirs):
    $(make) -f $@/makefile $(target)
build: x y

x: target=build
y: target=prepare

x y: 
    echo hi $(target) $@
    touch $@

另请参见GNU Makefile rule generating a few targets from a single source file,因为它是对与此问题相反的问题的答案.

网友评论