#******************************************************************************
#			PACOR II SOFTWARE
#		Property of the U.S. Government
#			NASA/GSFC/Code 560
#******************************************************************************
#
# UNIT NAME: .dps_compile_info
#
# PURPOSE: Environment variables needed to compile ISTP DPS software;
#          These environment variables are used in the InstallPICS script,
#          Makefiles, Imakefiles, and xmkmf command.
#
# INVOCATION METHOD: 
#       source .dps_compile_info
#
# CHANGE HISTORY:
# Author	Change ID  Build/Release   Date      Description of Change
# ------	---------  ------------- ---------   ---------------------
# C. DeMeter    ACE         R1.0          03/12/96   Initial implementation
# C. DeMeter    TRACE       R1.0          05/01/96   Modify for TRACE
# R. Wiechert   WIND970001  R1.0          06/16/97   Adapted for ISTP environment
#
# NOTES: 
# This is intended to be called from the developer's .cshrc file, after
# sourcing .dps_user_env
#
#******************************************************************************

# set paths for Motif and X11 libraries
#    set path for Mrm lib
setenv DPSMRMLIB $MOTIFHOME
#    set path for Xm Lib
setenv DPSXMLIB $MOTIFHOME
#    set path for Xmu lib
setenv DPSXMULIB $X11R5HOME/lib
#   set path for Xt lib
setenv DPSXTLIB $X11R5HOME/lib
#   set path for X11 lib
setenv DPSX11LIB $X11R5HOME/lib
#   set path for Xext lib
setenv DPSXEXTLIB $X11R5HOME/lib
#   set path for Uil lib
setenv DPSUILLIB $MOTIFHOME

# set paths for Motif and X11 includes
#   set path for Mrm includes
setenv DPSMRMINC $MOTIFHOME/../include
#   set path for Xm includes
setenv DPSXMINC $MOTIFHOME/../include
#   set path for X11 includes
setenv DPSX11INC $X11R5HOME/include
#   set path for Uil includes
setenv DPSUILINC $MOTIFHOME/../include

# directory with extra wml .h and .c files for InstallPICS
#       to copy from into $PICSHOME/chi/wml
setenv DPSWMLSRC $PICSHOME/Wml

# directory with config file for xmkmf command 
setenv DPSIMAKECONFIG1 $PICSHOME/config
setenv DPSIMAKECONFIG2 $PICSHOME/config

# path for uil command used in Imake.chi_template
setenv DPSUILBIN $MOTIFHOME/../bin/uil

#QED
