#
#	% make -f makefile-fits.pgf77
#	or
#	% make linux
#
#	% make -f makefile-fits.pgf77
#	or
#	$ make macosintel
#
#       % make -f makefile-fits.macosppc
#       or
#       % make macosppc
#
#	% make -f makefile-fits.ultrix
#	or
#	% make ultrix
#	
#	% make -f makefile-fits.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-fits.pgf77 $(all) ARCH=$@

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

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

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

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