Solaris Imakefile 复制文件规则
我正在尝试将应用程序从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在文件顶部添加一条规则:
规则的名称并不重要,重要的是它是第一个。原因是因为如果没有给出参数,
make
默认情况下只会执行文件中的第一条规则。然后,此
default
规则取决于您要复制的文件,并且make
将检查它们的规则。You need to add a rule at the top of the file:
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, andmake
will check for rules for them.正如您从文档中看到的,我认为您不能省略副本的目的地。
As you can see from the documentation, I don't think you can omit the destination of your copies.