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

programs = test_fac test_matinv test_specfunc  \
test_det test_matcon test_matev test_sparse test_inter1d \
test_inter2d test_inter3d test_akima test_lsp test_muller \
test_integ test_bsyn test_bsjn test_bskn test_bsin

prog:$(programs)

clean:
		rm -f {*.o,*.oo,*.ipo,*.a,*.mod}
		rm -f $(programs)

%: %.o
		$(LINK) $(LINKFLAGS) $< init_random_seed.o $(LINKFVN) -o $@

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

$(programs): init_random_seed.o