How would I link in or compile SOIL (http://lonesock.net/soil.html) into my C++ OpenGL project on Mac OS X?
There's a makefile in the zip that you could try using (projects/makefile). You'll want to rename makefile to __M__akefile (capital M), then just run make in the projects/makefile directory. You'll also need to create the folder for it to put the compiled objects into
From a command line prompt
cd
cd projects/makefile
cp makefile Makefile
mkdir obj
make
This builds fine on Linux, and should work on OS X provided you have a C compiler installed.