#! /bin/sh
#_______________________________________________________________________________
#
#       Bourne shell script : rmcorbadoc
#	ID : $Id: rmcorbadoc,v 3.0 2000/08/23 13:15:30 lefevre Exp $
#	Remove javadoc html files for idl generated java files
#	to save space on disk.
#   	Jean-Paul Le Fvre - CEA DAPNIA/SEI - August 1999
#_______________________________________________________________________________

# The top directory of the javadoc files.
apidir=$WEBDIR/lefevre/java/api

# The list of Corba directories
corbadir="hep/cms/calmoni/corba org/ariane/orbec/corba org/demo/bridge/corba"
corbadir="$corbadir org/demo/orbec/corba org/oodb/bdnet/corba"

# The list of doc files on java files generated by the idl compiler
# which will be removed.
files="*Helper.html *Holder.html StubFor*.html _*Base*.html"

for d in $corbadir
do
	cd $apidir/$d
	echo $PWD
	\rm $files
	echo
done

#_______________________________________________________________________________
