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 に答える