Last change
on this file since 1292 was 1210, checked in by mar637, 18 years ago |
Merge from Release2.1.0b tag
|
-
Property svn:executable
set to
*
|
File size:
567 bytes
|
Rev | Line | |
---|
[1159] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
[1210] | 3 | ROOTDIR=`pwd`
|
---|
[1161] | 4 | . aipsinit.sh
|
---|
[1159] | 5 |
|
---|
[1161] | 6 | MODULES="casa components coordinates fits images lattices measures ms scimath tables atnf"
|
---|
| 7 |
|
---|
| 8 | echo 'Building modules. This might take a while.'
|
---|
| 9 | echo 'Progress can be seen with tail -f build.log'
|
---|
| 10 | if [ -f 'build.log' ]
|
---|
| 11 | then
|
---|
| 12 | rm build.log
|
---|
| 13 | touch build.log
|
---|
[1159] | 14 | fi
|
---|
[1161] | 15 | for mod in ${MODULES}
|
---|
[1159] | 16 | do
|
---|
[1161] | 17 | cd $ROOTDIR/code/$mod
|
---|
| 18 | echo "Making module $mod..."
|
---|
| 19 | make cleansys >> $ROOTDIR/build.log 2>&1
|
---|
| 20 | make >> $ROOTDIR/build.log 2>&1
|
---|
[1159] | 21 | done
|
---|
[1161] | 22 | echo 'Finished building the casa modules required by ASAP'
|
---|
| 23 | echo 'Look for status in build.log'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.