First draft of README file
==========================

==================
To compile library
==================
On Linux and MacOS X platform :
$cd Build
$./bootstrap
$./configure --prefix=<path to install> --with-libSalInstall=<path of libSAL install>
$make
$make install (if you want to install library)

On iOS platform :
$cd Build
$./bootstrap
$PATH=<path of ios platform binary>:$PATH ./configure CC="i<path of gcc> -arch <armv6/armv7> -isysroot<path of iOS SDK>" --host=arm-apple

See example : 
$PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:$PATH ./configure CC="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk" --host=arm-apple
./configure CFLAGS="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk"  CC=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc --host=arm-apple
$make
$make install (if you want to install library)

On NDK Android platform :
$cd Build
$./bootstrap
$./configure --host=<host name>
See example : 
$./configure --host=arm-linux-androideabi-gcc
$make
$make install (if you want to install library)

=================================
To generate doxygen documentation
=================================
$make doxygen-doc

