#!/bin/csh
if(`printenv SW_BASE` == "") setenv SW_BASE /usr/local/softWoRx
if(`uname -s` == "Linux") then
	set TARG=`uname -p`
else
	set TARG=mips
endif

if(-x /usr/bin/kdesu) then
    kdesu -d -n -c $SW_BASE/bin/$TARG/ConfigSysParams
else
    xterm -geometry 70x10+600+100 -fg black -bg lightgray \
      -title "Configure softWoRx System Parameters" \ 
      -e $SW_BASE/bin/$TARG/ConfigSysParams
endif

