Makefile
430 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
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