#
#	% make -f makefile-binary_utilities.pgf77
#	or
#	% make linux
#
#	% make -f makefile-binary_utilities.pgf77macos32
#	or
#	% make macosintel
#
#	% make -f makefie-binary_utilities.macosppc
#	or
#	% make macosppc
#
#	% make -f makefile-binary_utilities.ultrix
#	or
#	% make ultirx
#	
#	% make -f makefile-binary_utilities.unix
#	or
#	% make unix
#

ALL = all

oops:
	@echo No architecture specified.  Please re-run as \"make ARCH\", \
	where ARCH is one of
	@grep '^[a-z].*:' makefile | grep -v $@ | sed 's/:.*$$//'

linux:	
	$(MAKE) -f makefile-binary_utilities.pgf77 $(all) ARCH=$@

macosintel:						# Mac OS X Intel
	$(MAKE) -f makefile-binary_utilities.pgf77macos32 $(all) ARCH=$@

macosppc:					# Mac OS X PPC
	$(MAKE) -f makefile-binary_utilities.macosppc $(all) ARCH=$@

ultrix:						# DECstation (Ultrix)
	$(MAKE) -f makefile-binary_utilities.ultrix $(all) ARCH=$@

unix:                                           # Other Unixes
	$(MAKE)	-f makefile-binary_utilities.unix $(all) ARCH=$@
