Project's Home Page
Table of Contents Document Overview The Project Repository Dependencies Building and Deploying OME
Project's Home Page IV. Building and Deploying

 
  SBDD>Building and Deploying>Building Previous   Next  
 
 
 
IV-1. Building
 

Move to your CVS_LOCAL directory. Then change to the perl2 directory:

cd OME/src/perl2

Run the perlCheck.pl script with the -c to make sure that you have installed the required libraries:

./perlCheck.pl -c

If the script tells you that all the libraries are OK, then you can go ahead. Otherwise, you will have to install the missing libraries—which can be done by running the script without the -c option.

  Double checking the libraries
 
 

After making sure that all the libraries have been installed, do the standard:

perl Makefile.PL
make
sudo make install

(you should see a bunch of warnings that may be ignored)
  The perl2 directory
 
 

Now, go to the C directory:

cd ../C

and run

make all
sudo make install

(you should see a bunch of warnings that may be ignored)

At this point you're finished with the source code.

  The C directory
 

 
 
 
  Top Building and Deploying Previous   Next