source: gs2-extensions/tdb/trunk/src/CASCADE-MAKE.sh@ 30739

Last change on this file since 30739 was 30267, checked in by jmt12, 9 years ago

Moved TDBJava building into the ant file so that we can easily create manifest file - needed when make Java hop between jars

  • Property svn:executable set to *
File size: 525 bytes
Line 
1#!/bin/bash
2
3list="TDBDEL TDBGET TDBKEYS TDBSET TXT2TDB TDB2TXT TDBCLI"
4gs3list="JNI"
5
6for d in $list ; do
7 echo " Running CASCADE-MAKE/$d.sh $*"
8
9 ./CASCADE-MAKE/$d.sh $*
10
11 if [ $? != 0 ] ; then
12 echo " Error encountered running CASCADE-MAKE/$d.sh"
13 exit 1
14 fi
15done
16
17if [ "${GSDL3HOME}x" != "x" ] ; then
18 for d in $gs3list ; do
19 echo " Running CASCADE-MAKE/$d.sh $*"
20
21 ./CASCADE-MAKE/$d.sh $*
22
23 if [ $? != 0 ] ; then
24 echo " Error encountered running CASCADE-MAKE/$d.sh"
25 exit 1
26 fi
27 done
28fi
Note: See TracBrowser for help on using the repository browser.