Solaris Imakefile 复制文件规则

发布于 2024-12-15 03:53:16 字数 467 浏览 3 评论 0原文

我正在尝试将应用程序从 Windows 移植到 Solaris,但我发现 Imakefile 没有很好地定义,或者至少没有按预期工作。

我定义了一些规则来复制一些 protobuf 文件,如下所示:

file1.pb.cc:
    cp -p $(PROTODIR)/file1.pb.cc .

file2.pb.cc:
    cp -p $(PROTODIR)/file2.pb.cc .

file3.pb.cc:
    cp -p $(PROTODIR)/file3.pb.cc .

在 Windows 上,所有文件都会被复制。

在Solaris 上,仅首先进行复制,然后什么也不会发生。

如果我重新运行 make,我会收到消息“file1.pb.cc”是最新的(这是可以的,因为它在那里)并且执行已完成。

那么,为什么其他文件没有被复制呢?

谢谢, 博格丹

I am trying to port an application from windows to solaris and I found out that the Imakefile is not defined well, or at least is not working at expecting.

I have some rules defined to copy some protobuf files as:

file1.pb.cc:
    cp -p $(PROTODIR)/file1.pb.cc .

file2.pb.cc:
    cp -p $(PROTODIR)/file2.pb.cc .

file3.pb.cc:
    cp -p $(PROTODIR)/file3.pb.cc .

On windows all the files are copied.

On solaris, only first is copied, then nothing happens.

If I re-run make, I get the message 'file1.pb.cc' is up to date (which is ok, because is there) and the execution is finished.

So, why the other files are not copied ?

Thanks,
Bogdan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

快乐很简单 2024-12-22 03:53:16

您需要在文件顶部添加一条规则:

default: file1.pb.cc file2.pb.cc file3.pb.cc

规则的名称并不重要,重要的是它是第一个。原因是因为如果没有给出参数,make 默认情况下只会执行文件中的第一条规则。

然后,此default规则取决于您要复制的文件,并且make将检查它们的规则。

You need to add a rule at the top of the file:

default: file1.pb.cc file2.pb.cc file3.pb.cc

The name of the rule is not important, just that it is first. The reason is because make will by default only execute the first rule in the file if not given an argument.

This default rule then depends on the files you want copied, and make will check for rules for them.

長街聽風 2024-12-22 03:53:16

正如您从文档中看到的,我认为您不能省略副本的目的地。

As you can see from the documentation, I don't think you can omit the destination of your copies.

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