Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
split up config and function definitions; if ~/simgrid-svn/buildtools/scripts/simgrid...
[simgrid.git] / buildtools / scripts / make_dist.sh
1 #!/bin/bash
2 # This script creates a new dist archive from the svn
3
4 set -e # fail fast on errors 
5
6 # get config
7 if [ -e ~/simgrid-svn/buildtools/scripts/simgrid_build.conf ] ; then
8   source ~/simgrid-svn/buildtools/scripts/simgrid_build.conf
9 else
10   source ~/.simgrid_build.conf
11 fi
12
13 echo "get Linux dependencies"
14 sudo aptitude install -y libtool automake1.10 autoconf libgcj10-dev gcc g++ bash flex flexml doxygen bibtex bibtool iconv bibtex2html addr2line valgrind transfig
15
16 make_dist
17
18 echo "Done!"