#!/bin/ksh
#
rootDir=`pwd`
echo "============================== CD $rootDir/dicom :: MAKE dicom ================================="
cd $rootDir/dicom
make clean
make all
make neat
#
echo "============================== CD $rootDir/gui :: MAKE mojoe ================================="
cd $rootDir/gui
./make_mojoe
rm mojoe.h
rm mojoe.cxx
#
echo "============================== CD $rootDir/Monkey :: MAKE Monkey ================================="
cd $rootDir/Monkey
./make_monkey
rm monkey.h
rm monkey.cxx
#
echo "============================== CD $rootDir/Read_header_ese11 :: MAKE Read_header_ese11 ================================="
cd $rootDir/Read_header_ese11
make clean
make
rm -f *.o
#
echo "============================== CD $rootDir/Read_header_ese12 :: MAKE Read_header_ese12 ================================="
cd $rootDir/Read_header_ese12
./makeall
#
echo "============================== CD $rootDir/Read_header_ese14 :: MAKE Read_header_ese14 ================================="
cd $rootDir/Read_header_ese14
./makeall
#
cd $rootDir
