source: issm/oecreview/Archive/13393-13976/ISSM-13407-13408.diff@ 13980

Last change on this file since 13980 was 13980, checked in by Mathieu Morlighem, 12 years ago

preparing oecreview for 13393-13976'

File size: 1.0 KB
  • ../trunk-jpl/externalpackages/adolc/install-update-dev.sh

     
     1#!/bin/bash
     2set -eu
     3
     4#This script is very specific to the larour larsen nightly using adolc.
     5#It relies on just an update of adolc, and symlink to an existing adolc
     6#repo.
     7
     8#Some cleanup
     9rm -rf install adolc_v220_issm
     10
     11#symlink:
     12ln -s  /u/astrid-r1b/larour/issm-uci/trunk-jpl/externalpackages/adolc/adolc_v220_issm ./adolc_v220_issm
     13
     14#update and compile
     15cd adolc_v220_issm
     16git pull
     17
     18autoreconf -f -i
     19./configure --prefix=$ISSM_DIR/externalpackages/adolc/install
     20
     21if [ $# -eq 0 ]; then
     22        make
     23else
     24        make -j $1
     25fi
     26make install
Note: See TracBrowser for help on using the repository browser.