#! /bin/csh -f 

#set variable
	set fn = $1

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

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