Blame view

fvn_integ/Makefile 298 Bytes
b93026039   daniau   git-svn-id: https...
1
2
3
4
  
  include $(BTREE)/Make.inc
  
  objects = fvn_integ.o
19e954a45   cwaterkeyn   ChW : added modul...
5
  modobjects = fvn_integ.o
b93026039   daniau   git-svn-id: https...
6
7
  
  all: $(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
  clean:
  		rm -f {*.o,*.oo,*.ipo,*.a,*.mod}
  
  install:
  		cp fvn_integ.mod $(BTREE)/modules
  
  $(objects): fvn_integ.f90
  
  %.o: %.f90
  		$(F95) $(F95FLAGS) -c $< -o $@