如何在nmake中定义函数调用?

时间:2018-06-18 04:40:49

标签: makefile nmake

我正在将GNU makefile翻译成nmake。它定义了如下函数:

define pull_container
    docker pull projectunik/$(1):$(shell jq '.["$(1)"]' containers/versions.json)
endef

然后可以调用函数,如:

$(call pull_container,vsphere-client)

真实参数vsphere-client将被替换为第一个参数:$(1)nmake还有其他选择吗?

0 个答案:

没有答案