从automake文件中打印变量值

时间:2013-09-02 08:07:06

标签: makefile gnu-make

我正在尝试使用Automake构建系统调试问题。有些文件没有被编译,我怀疑这是其中一个变量不正确的问题。我可以在Makefile.am中放一些东西,使其打印出变量的值:

E.g。

foo = some_file.c another_file.c

print_out_something_helpful($(foo))

如何将print_out_something_helpful函数与规则集成?

所需的样本输出类似于:

 >> Files to compile are "some_file.c another_file.c"

1 个答案:

答案 0 :(得分:0)

您可以使用echo $(foo)打印变量值

foo = some_file.c another_file.c

all:
     echo $(foo))