/ani/mrses

To get this branch, use:
bzr branch http://suren.me/webbzr/ani/mrses

« back to all changes in this revision

Viewing changes to scripts/mrses_install.sh

  • Committer: Suren A. Chilingaryan
  • Date: 2010-04-28 04:30:08 UTC
  • Revision ID: csa@dside.dyndns.org-20100428043008-vd9z0nso9axezvlp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
if [ -z "$1" ]; then
 
4
    echo "$0 <rname>"
 
5
    exit
 
6
fi
 
7
 
 
8
(
 
9
    cd /home/csa
 
10
    tar xjf $1.tar.bz2
 
11
    rm -f mrses
 
12
    ln -sf $1/ mrses
 
13
    make -C $1/cell
 
14
    cd $1
 
15
    ln -s cell/mrses_hw.mex
 
16
)