source: gs2-extensions/parallel-building/trunk/src/packages/CASCADE-MAKE.sh@ 24690

Last change on this file since 24690 was 24690, checked in by jmt12, 13 years ago

Having added a new function to the cascade-make library to handle Perl CPAN module configuration, I can now add cascade-makey files for Proc::Daemon and IPC::Run

  • Property svn:executable set to *
File size: 249 bytes
Line 
1#!/bin/bash
2
3list="OPENMPI TINYXML IPCRUN PROCDAEMON"
4
5for d in $list ; do
6 echo " Running CASCADE-MAKE/$d.sh $*"
7
8 ./CASCADE-MAKE/$d.sh $*
9
10 if [ $? != 0 ] ; then
11 echo " Error encountered running CASCADE-MAKE/$d.sh"
12 exit 1
13 fi
14done
Note: See TracBrowser for help on using the repository browser.