#
# gnumake makefile
#
# x-kernel v3.2
#
# Copyright (c) 1991  Arizona Board of Regents
#
# $Revision: 1.1 $
# $Date: 1992/02/11 01:55:43 $
#

MAKE_D=make-3.57

make:
	@if [ "$(ARCH)" = "" ] ; then \
		echo "ARCH environment variable must be defined" ; \
	else \
		cd $(MAKE_D)/$(ARCH); make;		\
		cmp make ../../../../bin/$(ARCH) > /dev/null 2>&1 || \
			echo installing make ; \
			cp make ../../../../bin/$(ARCH) ; \
	fi ; 

