#!/bin/csh -f
#
# @(#)$Header: /afs/isis/depts/cep/emc/apps/archive/edss_tools/edss_tools/setup/Setup,v 1.8 2006/10/20 14:23:28 bbaek Exp $
#
## HEADER ########################################################
#
# This script sets up the environment variables needed for compiling
# and linking to the edss_tools library.
#
##################################################################

if ( $?SMK_SUBSYS ) then

   #  Set directories
   source $SMK_SUBSYS/edss_tools/setup/set_dirs.scr

   #  Get system-specific flags
   source $SMK_SUBSYS/edss_tools/setup/sysflags

else 
   echo "ERROR: EDSS Tools \"Setup\" script requires setting of the SMK_SUBSYS"
   echo "       environment variable prior to using it."
   set status = 1

endif

exit( $status )
