# This is the default standard .cshrc provided to csh/tcsh users. # They are expected to edit it to meet their own needs. # # The commands in this file are executed each time a new csh shell # is started. # # $Revision: 1.7 $ # # Enable file-completion set filec # Add some additional directories containing commands to the path setenv HOMEMWC ~matt set path=($path /usr/local/bin $HOME/bin $HOMEMWC/bin $HOMEMWC/scripts) # Define the default printer (two-sided queue on Center for Relativity # HP LaserJet in room 9.301 setenv PRINTER lp2 # Remember last 100 commands set history = 100 # The following commands (within the scope of the 'if'), are executed only # for interactive shells if ( (! $?ENVONLY) && $?prompt ) then # set the prompt to show the host name and event number. set prompt="`hostname` \!> " # Define some aliases (see '~/.aliases' for actual definitions) source ~/.aliases # Define some environment variable for communication with 'make' setenv F77 'f77' setenv F77FLAGS '-g -n32' setenv F77CFLAGS '-c' setenv F77LFLAGS '-L/usr/localn32/lib' setenv F77PP 'touch' setenv CC 'cc' setenv CCFLAGS '-g -n32' setenv CCCFLAGS '-c -n32' setenv CCLFLAGS '-L/usr/localn32/lib' setenv LIBBLAS '-lblas' endif