source: trunk/external/casa_asap/build.sh @ 1161

Last change on this file since 1161 was 1161, checked in by mar637, 18 years ago

swapped filenames install.sh/ build.sh

  • Property svn:executable set to *
File size: 553 bytes
RevLine 
[1159]1#!/bin/sh
2
[1161]3. aipsinit.sh
[1159]4
[1161]5MODULES="casa components coordinates fits images lattices measures ms scimath tables atnf"
6
7echo 'Building modules. This might take a while.'
8echo 'Progress can be seen with  tail -f build.log'
9if [ -f 'build.log' ]
10then
11    rm build.log
12    touch build.log
[1159]13fi
[1161]14for mod in ${MODULES}
[1159]15do
[1161]16    cd $ROOTDIR/code/$mod
17    echo "Making module $mod..."
18    make cleansys >> $ROOTDIR/build.log 2>&1
19    make >> $ROOTDIR/build.log 2>&1
[1159]20done
[1161]21echo 'Finished building the casa modules required by ASAP'
22echo 'Look for status in build.log'
Note: See TracBrowser for help on using the repository browser.