Blame view

fvn_test/Makefile 430 Bytes
27d3b84d6   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  
  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