#!/bin/csh -f
#
#    gen_config
#
#       Wrapper for the configuration file generator.
#       "gc" (symbolic link) runs the generator with the "-t" option.
#
#    NOTE:  the file "testg_setup.csh" must be run first in order for
#           this file to run properly.
#
#
#echo "Command name = `basename $0`"
if ( `basename $0` == "gc" ) then
   $gated_perl_cmd $gated_script_dir/gen_config.perl -t $*
else
   $gated_perl_cmd $gated_script_dir/gen_config.perl $*
endif
#
