Makefile 255 Bytes
include $(BTREE)/Make.inc

objects = fvn_interpol.o

lib:$(objects)

install:
		cp fvn_interpol.mod $(BTREE)/modules

clean:
		rm -f {*.o,*.oo,*.ipo,*.a,*.mod}

%.o: %.f90
		$(F95) $(F95FLAGS) -c $< -o $@

%.o: %.f
		$(F95) $(F95FLAGS) -c $< -o $@