: PSLSYSGEN - creates PSL Library if not already there
: ${P?} ${L?} ${SHOME?} 
if test -s $L/psl.a
	then
	exit 0
	fi
if test ! -d $L
	then
	mkdir $L
	fi
echo Creating PSL Library
cd $P
if COMPILEALL && LIBRARY $L/psl.a
	then
	echo psl Library Created; exit 0
	else
	echo ERROR in psl Library Creation; exit 1
	fi
