COLIMATE Distribution

Colimate is implemented using several packages. You can either download the original sources and recompile everything with the appropiate compiler, or download an intermidiate sources where all files are in C++, or download the executing environment and executable files for several platforms.

Original Source

Easy C++ Source (without flex++ and bison++) Executable Files Installation instructions for sources
  1. Create a directory for the Colimate files

  2. mkdir Colimate ; cd Colimate
  3. Uncompress the tar file with the sources (either the easy C++ or the original sources)

  4. tar -zxvf colimate_src.tgz
  5. Edit the Makefile and make sure that the FLDIR points to the directory where libfl.a lives and that QTDIR points to where the QT library lives (in RedHat distributions /usr/lib/qt-2.3.1, checkout for QT version).
  6. Compile the source code make -f Makefile or make -f Makefile.easy.
  7. Copy the binaries colimate_cc and colimate to a directory within the PATH (for instance, /usr/local/bin)

  8. cp colimate colimate_cc /usr/local/bin
     
Installation instructions for binaries
  1. Move to a local directory within the path (usually /usr/local/bin)

  2. cd /usr/local/bin
  3. Uncompress the tar file with the binaries

  4. tar -zxvf colimate_<SYSTEM>.tgz
  5. Make sure that the directories with the binaries is in the path, if not you can add it with

  6. setenv PATH /usr/local/bin:$PATH