This directory holds configuration files needed by various makefiles 
across the ICE code to compile "C" code.  For this code to compile correctly, 
ICE needs to know which type of OS the user is running, and pick up 
the correct configuration file. By default, ICE will look for the 
config.mk file in the MexConfig directory. If this file does not 
point to the correct OS dependent configuration file, the compilation 
will fail.

Users should therefore identify their OS configuration file in the 
set of configuration files present in the MexConfig directory (
ex: config_linux.mk for a 32 bits linux OS, config_linux64.mk 
for a 64 bits linux OS, etc ...) and rename this file to config.mk

For ex, on a linux 32 bits platform, in the MexConfig directory, 
find the linux 32 bits configuration file, and type: 

cp ./config_linux32.mk ./config.mk

Users familiar with symbolic linking can also try: 

ln -s  ./config_linux32.mk ./config.mk

The rest of the files in this directory are related to matlab compiler settings 
that have been tweaked for platform compatibility purposes. Users should not 
modify them, unless familiar with the 'mex' compiler.
