#
#	% make -f makefile-plot.pgf77
#	or
#	% make linux
#
#	% make -f makefile-plot.pgf77macos32
#	or
#	% make macosintel
#
#	% make -f makefie-plot.macospps
#	or
#	% make macosppc
#
#	% make -f makefile-plot.ultrix
#	or
#	% make ultrix
#
#	% make -f makefile-plot.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:						# Linux
	$(MAKE) -f makefile-plot.pgf77 $(all) ARCH=$@

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

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

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

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

