I am trying to create a binary using a makefile with iOS as target platform. However, I have only seen the option to use a makefile for macOS as target platform. Is there a way to this also for iOS?
Background: I am trying to embed Google's OR tools (optimization solver) to an iOS app. Those OR tools are written in C++ and require a make file for compiling. To make it more complicated, I am using Flutter for the app. Flutter uses Xcode to create the app. Due to this external build control, integrating the C++ code with a make file seems unlikely. So my plan is to create a C++ binary framework, which I can then embed as an external binary to the project in Xcode. But now I am stuck with getting an iOS target work with that make file. Any ideas?