1
有沒有一種方法可以通過它們在規則體中的位置來引用來源?像MakeFile:如何在規則體中的位置引用源?
targ: s1 s2 s3
cmd $(1) foo $(2) bar $(3)
這樣「make targ」運行「cmd s1 foo s2 bar s3」?
有沒有一種方法可以通過它們在規則體中的位置來引用來源?像MakeFile:如何在規則體中的位置引用源?
targ: s1 s2 s3
cmd $(1) foo $(2) bar $(3)
這樣「make targ」運行「cmd s1 foo s2 bar s3」?
targ: s1 s2 s3
cmd $(word 1,$^) foo $(word 2,$^) bar $(word 3,$^)