makefile 中的库概念
谁能帮我创建一个静态库? 我在 cygwin 下工作并使用 gcc。 我有 4 个目标文件,我想使用 make
创建一个静态库。如何配置我的 makefile 来执行此操作?
Can anyone help me create a static library?
I'm working under cygwin and using gcc.
I have 4 object files and I want to create a static library using make
. How do I configure my makefile to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建如下规则:
请注意,第二行必须以制表符开始,而不是四个空格。
$@
是 makefile 中的一个特殊常量,它被解析为目标的名称,而$^
被解析为依赖项列表。Create a rule like this:
Note that you must start the second line with a Tab, not four spaces.
$@
is a special constant in the makefile that is resolved to the name of the target, while$^
is resolved to the list of dependencies.