# -*-Makefile-*- # # Copyright (c) 2008 Kristopher L. Kuhlman (kuhlman at hwr dot arizona dot edu) # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # Malama, B., A. Revil, and K.L. Kuhlman, 2009. A semi-analytical solution # for transient streaming potentials associated with confined aquifer # pumping tests, Geophysical Journal International, 176(3), 1007–1016. # http://dx.doi.org/10.1111/j.1365-246X.2008.04014.x # # Malama, B., K.L. Kuhlman, and A. Revil, 2009. Theory of transient # streaming potentials associated with axial-symmetric flow in unconfined # aquifers, Geophysical Journal International, 179(2), 990–1003. # http://dx.doi.org/10.1111/j.1365-246X.2009.04336.x # # $Id: Makefile.g95,v 1.2 2007/12/19 17:14:06 kris Exp kris $ ################################################## # flags / settings for g95 compiler # this compiler will run much faster than intel # since extended range != extended precision PERF=-O3 -funroll-loops -fomit-frame-pointer -fno-unit-at-a-time DEBUG=-O0 -freal=NaN -finteger=-9999999 -flogical=false -fbounds-check -Wall -Wextra -Wno=102,140 F90FLAGS=-Wall -Wextra F90=g95 PERFLDFLAGS= FREE=-ffree-form CPP=-cpp ################################################## ## common things between both compilers go here #include Makefile.mpfun include Makefile # create list of dependencies using compiler (only works with g95) dep: g95 -M -cpp $(F90SRC) > dep.out && echo -e "\n\t***\ndependencies output to dep.out\n\t***\n"