1

我在make check设置时运行了一个测试脚本,如下所示:

TESTS = test.py

test.py取决于正在构建的另一个文件。如何指定对 automake 的依赖?

4

1 回答 1

2

使用简单的make依赖:

TESTS = test.py
test.py: that_other_file

that_other_file:
        echo Hi > $@     # remember to use a TAB before the action as usual
于 2013-06-14T15:46:50.607 回答