Hey all,
What I want to achieve: I'm porting an application to iPhone and I need to run some scripts on the generated assembly by the compiler (our optimization stuff) and then compile it to an executable. I always used a standard make file and did something like this
gcc -S -c my_source.c # compile and generate ASM
optimize.sh my_source.s # optimizations
gcc CCFLAGS my_source.s # compile
Unfortunately, there's no way to generate makefile from xcode projects (I tried some tools, but none of them actually works). I was wondering if any of you got a solution for my problem. I know I can write a makefile from scratch, but it's not a good idea. Any other solutions are welcomed too.
Thanks