如何从 Xcode 项目生成 Makefile?

发布于 2024-07-05 18:40:58 字数 241 浏览 6 评论 0原文

我想从 Mac 上现有的 Xcode 项目生成 Makefile。 具体来说,是现有的 iPhone、Mac 上的 Objective-C 程序。

我找到了 PBToMake,但看起来它适用于 Xcode 2.1,当我尝试使用时它不适用于 Xcode 3.1 项目。

I want to generate a Makefile from an existing Xcode project on the Mac. Specifically, an existing iPhone, Objective-C program on the Mac.

I found PBToMake, but it looks like it is for Xcode 2.1 and when I tried using it, it did not work for an Xcode 3.1 project.

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

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

发布评论

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

评论(4

纸伞微斜 2024-07-12 18:40:58

它不是生成 Makefile 的自动方式,但我发现它至少获得了为目标构建的源文件列表。

在本例中我使用的是 Xcode 4.0.2..

  • 选择项目顶部节点,
  • 在目标列表中选择目标。
  • 选择“构建阶段”
  • 打开“编译源”
  • 选择源文件之一
  • 按 Command-A 选择所有
  • 按 Command-C 复制 粘贴
  • 到您最喜欢的文本编辑器中并使用正则表达式进行重组。

粘贴的输出是每个源文件的完整路径名。

It's not an automated way of generating a Makefile, but I found it at least gets a list of source files that are built for a target.

I'm using Xcode 4.0.2 in this case..

  • select the project top node
  • select the target in the target list.
  • Choose "Build Phases"
  • Open the "Compile Sources"
  • Select one of the source files
  • PRess Command-A to select all
  • Press Command-C to copy
  • Paste in your favorite text editor and Regex away to restructure.

The pasted output is FULL pathnames to each source file.

许久 2024-07-12 18:40:58

GNUStep 提供了“pbxbuild”来将 .xcodeproj 文件转换为 GNUMakefile。

更新: pbxbuild 现在是已弃用

GNUStep provides 'pbxbuild' to convert a .xcodeproj file into a GNUMakefile.

UPDATE: pbxbuild is now deprecated

何止钟意 2024-07-12 18:40:58

您可以尝试 mfg。 它是基于模板的,我认为(我没有太多地使用它)你可以让它生成一个合适的 makefile。

You could try mfg. It is template based and I think (I haven't played with it too much) you could get it to generate a suitable makefile.

回眸一遍 2024-07-12 18:40:58

Xcode 不支持从项目生成 Makefile。 如果您只想在 IDE 之外构建项目,请查看 xcodebuild 命令行工具。

Xcode does not support generating a Makefile from a project. If you just want to build your project outside of the IDE, check out the xcodebuild command-line tool.

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