Changeset 2600


Ignore:
Timestamp:
11/04/09 11:00:48 (15 years ago)
Author:
Mathieu Morlighem
Message:

Added yams library and bamg

Location:
issm/trunk/externalpackages
Files:
6 added
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/externalpackages/doxygen/install.sh

    r1066 r2600  
    22
    33#Get number of cpus on current platform
    4 NUMCPUS=`grep -c processor /proc/cpuinfo`;
     4NUMCPUS=$1;
    55
    66#version of doxygen
     
    2626
    2727#Compile doxygen
    28 make -j $NUMCPUS
     28if [ -z $NUMCPUS ];
     29then
     30        make
     31else
     32        make -j $NUMCPUS
     33fi
    2934
    3035#Install doxygen
Note: See TracChangeset for help on using the changeset viewer.