1#=======================================
2# For use inside a Quantum Espresso Dist
3#=======================================
4
5# read in the QE config
6
7include ../../make.inc
8
9# rewrite to our variable names
10
11F90=$(MPIF90)
12FCOPTS=$(F90FLAGS)
13
14# here we use sed to re-write the library paths. This is only relevant
15# if we are using the Q-E internal lapack and blas. Q-E refers to them
16# as ../flib/*.a, when what we need is ../../flib*.a
17
18LIBS  = `echo $(LAPACK_LIBS) | sed -e "s/..\/flib/..\/..\/flib/g"`  \
19  `echo  $(BLAS_LIBS) | sed -e "s/..\/flib/..\/..\/flib/g"` $(MASS_LIBS)
20