#!/bin/sh

if [ X$MAKE = X ]
then	MAKE=make
	for p in `echo $PATH | sed 's/:/ /g'`
	do	if [ -f $p/gmake ]
		then	MAKE=gmake
		fi
	done
fi
echo $MAKE
