#!/bin/csh -f

#
# build script for installing CMN
#

if ($#argv == 1) then
	set lisp_image = $1
else
	set lisp_image = "/dist/lisp/franz.3.1/cl"
endif



if (-e $lisp_image) then
	$lisp_image -qq -batch < build.lisp
else
	echo "$lisp_image does not exist."
endif

echo All done!
