为文件类型创建规则
如何在 makefile 中为特定文件类型创建规则,因此如果我
result.txt: first.txt second.txt
在 makefile 中编写类似的内容,它将连接先决条件。
.txt:
cat $? > $@
不起作用
How can I create a rule in a makefile for a specific filetype so if I write something like
result.txt: first.txt second.txt
in a makefile and it will concatenate prerequisites.
.txt:
cat $? > $@
doesn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于这似乎有所帮助,因此我将其重新发布为答案,并添加了 @eriktous 的评论。
如果您不想仅处理更改的文件,请使用
$^
而不是$?
。Since this seems to have helped, I am reposting it as an answer, with @eriktous' comment added in.
If you don't want to process just the changed files, use
$^
instead of$?
.