我正在尝试调试使用 Automake 的构建系统的问题。一些文件没有被编译,我怀疑这是一个变量不正确的问题。有什么我可以放入其中Makefile.am
以使其打印出变量的值:
例如
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"