Makefile:can’罐头食谱’有参数吗?

前端之家收集整理的这篇文章主要介绍了Makefile:can’罐头食谱’有参数吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的问题涉及GNU的制作.

如果你有一系列命令可用作多个目标的配方,那么canned recipe就派上用场了.我可能看起来像这样:

define run-foo
# Here comes a
# sequence of commands that are
# executed line by line
endef

现在您可以像这样使用罐装配方:

file1: input1:
    $(run-foo)

$(pattern) : sub/% : %.inp
    $(run-foo)

等等.我想知道是否可以定义带参数的罐装食谱(或类似的东西),以便我可以像这样执行它们:

file2: input2
    $(run-foo) specific-parameter2 "additional"

file3: input3
    $(run-foo) another-parameter3 "text"

这可能吗?任何提示欢迎:)

解决方法

你这样做:

>在定义宏中使用参数$1,$2 …等
>通过$调用宏(调用…)

例如:

define recipe
echo $1
endef

all: t1 t2

t1:
    $(call recipe,"One")

t2:
    $(call recipe,"Two")
原文链接:https://www.f2er.com/c/119986.html

猜你在找的C&C++相关文章