Last change
on this file since 1207 was 1161, checked in by mar637, 18 years ago |
swapped filenames install.sh/ build.sh
|
-
Property svn:executable
set to
*
|
File size:
553 bytes
|
Rev | Line | |
---|
[1159] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
[1161] | 3 | . aipsinit.sh
|
---|
[1159] | 4 |
|
---|
[1161] | 5 | MODULES="casa components coordinates fits images lattices measures ms scimath tables atnf"
|
---|
| 6 |
|
---|
| 7 | echo 'Building modules. This might take a while.'
|
---|
| 8 | echo 'Progress can be seen with tail -f build.log'
|
---|
| 9 | if [ -f 'build.log' ]
|
---|
| 10 | then
|
---|
| 11 | rm build.log
|
---|
| 12 | touch build.log
|
---|
[1159] | 13 | fi
|
---|
[1161] | 14 | for mod in ${MODULES}
|
---|
[1159] | 15 | do
|
---|
[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] | 20 | done
|
---|
[1161] | 21 | echo 'Finished building the casa modules required by ASAP'
|
---|
| 22 | echo 'Look for status in build.log'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.