#! /bin/csh -f 

#set variable
	set fn = $1

#find directory 
	if ( $fn != "" ) then 
		cd $fn  
  	endif

#execution
	if ( -e d04 ) then
		echo 'd04 already exists '
		exit
	else if ( -e f05 ) then
		$dvdir/object/maked04.exe
	else
		echo 'f05 not found'
		exit	
	endif
