
# $Id: make,v 1.4 1994/11/02 10:44:39 surkau Exp $

# $Log: make,v $
 
: Run this script through /bin/sh

if [ "$MAKE" = "" ]
then
	MAKE=`cat ../config/MAKE.save`
	cmd=`echo $MAKE | (read w1 w2;echo $w1)`
	if [ ! -x $cmd ]
	then
		echo "Can't find your system's make utility !!"
		echo "Set it's pathname in environment variable MAKE."
		exit 1
	fi
fi

exec $MAKE -f ../config/CONFIG.make -f af.make -f ../config/Makefile ${1+"$@"}
