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

objects = fvn_integ.o

all: $(objects)

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

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

$(objects): fvn_integ.f90

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