libsphere.a:    *.f90
	gfortran -c *.f90
	ld -r -o libsphere.a *.o

clean:
	rm -f *.o

%.o: %.f90
	$(FC) $(FFLAGS) -c $<
