# -*-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., K.L. Kuhlman, and W. Barrash, 2007. Semi-analytical solution # for flow in leaky unconfined aquifer-aquitard systems, Journal of # Hydrology, 346(1-2), 59–68. # http://dx.doi.org/10.1016/j.jhydrol.2007.08.018 # # Malama, B., K.L. Kuhlman, and W. Barrash, 2008. Semi-analytical solution # for flow in a leaky unconfined aquifer toward a partially penetrating # pumping well, Journal of Hydrology, 356(1-2), 234–244. # http://dx.doi.org/10.1016/j.jhydrol.2008.03.029 # # $Id: Makefile.g95,v 1.1 2007/03/06 17:40:12 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 DEBUG=-ftrace=full -O2 -g -freal=NaN -finteger=-9999999 -flogical=false -fbounds-check \ -std=f95 -fintrinsic-extensions=dbesj0,dbesj1 -Wall -Wextra -Wno=102,140 F90FLAGS=-Wall -Wextra F90=g95 PERFLDFLAGS= ################################################## ## common things between both compilers go here 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"