source: extensions/gsdl-ocr/trunk/packages/devel/CASCADE-MAKE.sh@ 16800

Last change on this file since 16800 was 16800, checked in by davidb, 16 years ago

Creation of Greenstone extension for OCR support

File size: 352 bytes
Line 
1#!/bin/bash
2
3
4if [ ! -d "$GEXTOCR_INSTALLED/devel" ] ; then
5 echo "Making directory \"$GEXTOCR_INSTALLED/devel\""
6 mkdir "$GEXTOCR_INSTALLED/devel"
7fi
8
9
10for d in FTJAM ; do
11 echo " Running CASCADE-MAKE/$d.sh $*"
12
13 ./CASCADE-MAKE/$d.sh $*
14
15 if [ $? != 0 ] ; then
16 echo " Error encountered running CASCADE-COMPILE/$d.sh"
17 exit 1
18 fi
19done
Note: See TracBrowser for help on using the repository browser.