Blame view
fvn_test/Makefile
988 Bytes
27d3b84d6 git-svn-id: https... |
1 2 |
include $(BTREE)/Make.inc |
59ae88e06 git-svn-id: https... |
3 |
programs = test_fac$(exext) test_matinv$(exext) test_specfunc$(exext) \ |
a3adf4c0c Split de test_mat... |
4 |
test_det$(exext) test_matcon$(exext) test_inter1d$(exext) \ |
59ae88e06 git-svn-id: https... |
5 |
test_inter2d$(exext) test_inter3d$(exext) test_akima$(exext) test_lsp$(exext) test_muller$(exext) \ |
f6bacaf83 ChW 11/09: ANSI c... |
6 |
test_integ$(exext) test_bsyn$(exext) test_bsjn$(exext) test_bskn$(exext) test_bsin$(exext) test_operators$(exext) test_ze1$(exext) \ |
2b83390c6 1) added fvn_spar... |
7 |
test_besri$(exext) test_besrj$(exext) test_bestime$(exext) \ |
31f2c259c Added test exampl... |
8 |
test_sparse_zi$(exext) test_sparse_zl$(exext) test_sparse_di$(exext) test_sparse_dl$(exext) \ |
a3adf4c0c Split de test_mat... |
9 |
test_lm$(exext) test_matev_c$(exext) test_matev_r$(exext) |
27d3b84d6 git-svn-id: https... |
10 11 12 13 |
prog:$(programs) clean: |
b93026039 git-svn-id: https... |
14 |
rm -f {*.o,*.oo,*.ipo,*.a,*.mod,*.dat} |
27d3b84d6 git-svn-id: https... |
15 |
rm -f $(programs) |
59ae88e06 git-svn-id: https... |
16 |
%$(exext): %.o |
27d3b84d6 git-svn-id: https... |
17 18 19 |
$(LINK) $(LINKFLAGS) $< init_random_seed.o $(LINKFVN) -o $@ %.o: %.f90 |
59ae88e06 git-svn-id: https... |
20 |
$(F95) $(F95FLAGS) -c $< -o $@ |
27d3b84d6 git-svn-id: https... |
21 22 |
$(programs): init_random_seed.o |
31f2c259c Added test exampl... |
23 24 25 26 27 |
test_lm.o: test_lm.f90 excursion.o test_lm$(exext): test_lm.o excursion.o $(LINK) $(LINKFLAGS) test_lm.o excursion.o $(LINKFVN) -o $@ |