#! /bin/csh -f
# put your Prolog compiler there:
set comp = ../Comp/comp
if (! -e $comp) then
	echo "Prolog compiler not found" |& cat
	echo "build the compiler and modify shell script Emulator/compiler"
	exit -1
endif
$comp < $1.pl >! $1.w
