I've created some wrapper functions that encapsulate working with CoreAudio, and the goal is to create a C library that I can use with some command line C++ tools. So far things are working well. I took a sample project, modified it, and it builds and runs in XCode. I'd like to skip XCode altogether and build the library with gcc and a Makefile.
How can I link against an Apple Framework? Are Frameworks just shared libraries that I could include in the -l and -L options on gcc?
Here's an example:
From the man page of Apple's gcc (i686-apple-darwin10-gcc-4.2.1):
And from ld's man page: