Blame view

fvn_linear/Makefile 322 Bytes
b93026039   daniau   git-svn-id: https...
1
2
3
4
  
  include $(BTREE)/Make.inc
  
  objects = fvn_linear.o
19e954a45   cwaterkeyn   ChW : added modul...
5
  modobjects = fvn_linear.o
b93026039   daniau   git-svn-id: https...
6
7
  
  lib:$(objects)
19e954a45   cwaterkeyn   ChW : added modul...
8
9
  modules: $(modobjects)
  	rm -f $(modobjects)
b93026039   daniau   git-svn-id: https...
10
11
12
13
14
15
16
17
18
19
20
  install:
  		cp fvn_linear.mod $(BTREE)/modules
  
  clean:
  		rm -f {*.o,*.oo,*.ipo,*.a,*.mod}
  
  %.o: %.f90
  		$(F95) $(F95FLAGS) -c $< -o $@
  
  %.o: %.f
  		$(F95) $(F95FLAGS) -c $< -o $@