无法在makefile中调用bash函数

时间:2012-10-28 13:38:34

标签: makefile gnu-make

我有一种印象,我可以在GNU makefile中调用bash函数,但似乎错了。这是一个简单的测试,我定义了这个函数:

>type lsc
lsc is a function
lsc () 
{ 
    ls --color=auto --color=tty
}

这是我的Makefile:

>cat Makefile
all:
    lsc

以下是我在运行make时所得到的:

>make
lsc
make: lsc: Command not found
make: *** [all] Error 127

我的印象错了吗?或者是否有任何环境设置问题?我可以在命令行运行“lsc”。

5 个答案:

答案 0 :(得分:5)

在BASH脚本中使用$*

<强> functions.sh

_my_function() {
  echo $1
}

# Allows to call a function based on arguments passed to the script
$*

<强>生成文件

test:
    ./functions.sh _my_function "hello!"

运行示例:

$ make test
./functions.sh _my_function "hello!"
hello!

答案 1 :(得分:4)

您不能在Makefile中调用bash函数或别名,只能调用二进制文件和脚本。但你可以做的是调用交互式bash并指示它调用你的函数或别名:

all:
    bash -i -c lsc

例如,lsc中定义了.bashrc

答案 2 :(得分:1)

您是否使用“export -f”导出了您的功能?

是你的Makefile的shell,还是sh?

答案 3 :(得分:0)

如果您在问题How do I write the 'cd' command in a makefile?

中使用此函数,则可以从shell文件导入所有shell脚本函数
.ONESHELL: my_target

my_target: dependency
    . ./shell_script.sh
    my_imported_shell_function "String Parameter"

如果你愿意,你甚至可以不使用.ONESHELL的东西,只需在导入shell脚本后立即使用冒号;在一行中完成所有操作:

my_target: dependency
    . ./shell_script.sh; my_imported_shell_function "String Parameter"

答案 4 :(得分:0)

假设compile是您的.bash_profile中的函数

.bash_profile

dump_fields

Makefile

compile(){
  ...
}