Blame view

fvn_integ/Makefile 228 Bytes
b93026039   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  
  include $(BTREE)/Make.inc
  
  objects = fvn_integ.o
  
  all: $(objects)
  
  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 $@