我在make check
上设置了一个测试脚本,如下所示:
TESTS = test.py
但是test.py
依赖于正在构建的另一个文件。如何指定对automake的依赖?
答案 0 :(得分: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