使用 make 指定并行构建中的构建依赖关系
这就是我所拥有的:
在使用源树中的一些可执行文件的文件夹下测试脚本。
上面使用的可执行文件的源位于源树中的单独文件夹下。
我想要实现的目标:
进行构建,确保首先完成#2,然后才完成#1。我如何指定这种依赖关系?该构建是并行构建,并且也在其他目录下构建其他源。
原因:因为在安装过程中,我想将 #2 中的可执行文件与 #1 中的测试脚本捆绑在一起。
This is what I have:
Test scripts under a folder that use some executables in the source tree.
Sources for the executables used above under a separate folder in the source tree.
What I want to achieve:
Do a build, make sure # 2 is done first and only then #1 is done. How do I specify this dependency ? The build is a parallel build and builds other sources under other directories too.
Why : Because during install I want to bundle the executables from # 2 along with the test scripts in #1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需为测试脚本添加适当的可执行文件依赖项即可。还有比这更多的事情吗?
Just make the appropriate executables dependencies of the test scripts. Is there more to it than that?