# This is the top level Makefile. The Makefiles in subdirectories
# such as Robot may need to be edited.
#
# The default is to use a FORTRAN compiler
all:
	(cd Robot; make)
# This is if you are going to use f2c instead of a FORTRAN compiler
f2c:
	(cd Robot; make -f makefile.f2c)
# Don't yet know if g77 works or not.
linux:
	(cd Robot; make -f makefile.f2c)
# To build the DEC Alpha version
alpha:
	(cd Robot; make alpha)
osf:
	(cd Robot; make alpha)

# To build the Sun Solaris version
solaris:
	(cd Robot; make solaris)

clean:
	(cd Robot; make clean)
	(cd Fitsio; make clean)
	(cd ARK; make clean)
	(cd ARKc; make clean)
	(cd Fitsioc; make clean)
