Does Xcode support exporting a build configuration (compiler & linker options and flags) to a Makefile? Or is there a 3rd party implementation available for such task?
We do most of our (native code) development with Xcode, but we need to also compile it against Windows / Linux libraries. Generally we have valid build configurations in Xcode, and we manually edit Makefiles before committing code modifications. This process is error prone and creates undesired differences between development environment and our build system.
Automatically exporting the build configurations to Makefiles would greatly simplify our flow.