https://github.com/teuben/nemo
Raw File
Tip revision: be1856e2e2d707ddfc0c0c55fe71f54f1a7cc67d authored by Peter Teuben on 23 March 2004, 20:00:39 UTC
blank entry
Tip revision: be1856e
nemo_start.in
#! /bin/csh
#
#   @WARNING@
#
#   nemo_start:
#
#   source this file to start NEMO. You can override root and architecture
#   by presetting NEMO and NEMOHOST. In particular, NEMOHOST has been known
#   to give problems (see also fakehost/truehost targets in Makefile) 
#

if ($?NEMO == 0) then
   # this is where this version of NEMO was originally installed
   # but has long as $NEMO is predefined before this routine, you
   # should be able to re-locate it anywhere
   setenv NEMO @NEMO@
   # un-comment next line if NEMOHOST gives you problems in detection mode
   # setenv NEMOHOST @NEMOHOST@
endif

source $NEMO/nemo.rc
back to top