为文件类型创建规则

发布于 2024-12-10 06:48:19 字数 200 浏览 0 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉月流沐 2024-12-17 06:48:19

由于这似乎有所帮助,因此我将其重新发布为答案,并添加了 @eriktous 的评论。

%.txt:
        cat $? >$@

如果您不想仅处理更改的文件,请使用 $^ 而不是 $?

Since this seems to have helped, I am reposting it as an answer, with @eriktous' comment added in.

%.txt:
        cat $? >$@

If you don't want to process just the changed files, use $^ instead of $?.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文