LIB	= LibIbisBioPhys.a

.SUFFIXES: .o .f90 .F90 .c
#
# *****************************************************************
#

OBJS= \
	Sfc_Ibis_BioGeoPhysics.o

SRC	=  $(OBJS:.o=.f)
#
# *****************************************************************
#

$(LIB):  $(OBJS)
	$(AR) $(ARFLAGS) -ruv $(LIB)  $(OBJS)

Sfc_Ibis_BioGeoPhysics.o: Sfc_Ibis_BioGeoPhysics.f90  IbisOutput.o
	$(F90) -c  $(FFLAGS)  Sfc_Ibis_BioGeoPhysics.f90

clean:
	rm -f  $(OBJS) *.mod *.o *.a *.linux Makefile.*_*

.F90.o:
	$(F90) $(FFLAGS) -c -d $< 
.f90.o:
	$(F90) $(FFLAGS) -c $<
