How to create a makefile from an existing xcode project

How to generate a makefile for an existing Xcode project? This is an Xcode 3 OSX application that has .mm and .cpp files. And application links to AppKit, Cocoa, CoreData, the framework framework.

I need this Makefile to support cross compilation support.

I am aware of xcodebuild, which is not useful in my case. I came across converters / tools like PBToMake, pbxbuild which are deprecated at the moment.

Is there any way?

+4
source share

Source: https://habr.com/ru/post/1650784/


All Articles