#!/bin/sh # compute dependencies for the PWscf directory tree # make sure there is no locale setting creating unneeded differences. LC_ALL=C export LC_ALL # run from directory where this script is cd `echo $0 | sed 's/\(.*\)\/.*/\1/'` # extract pathname TOPDIR=`pwd` if test $# = 0 then dirs=" LAXlib FFTXlib Modules clib PW/src CPV/src PW/tools upftools PP/src \ PWCOND/src LR_Modules/ \ PHonon/Gamma PHonon/PH PHonon/D3 PHonon/FD atomic/src XSpectra/src \ ACFDT/src NEB/src TDDFPT/src GIPAW/src GWW/pw4gww GWW/gww GWW/head GWW/bse" elif test $1 = "-addson" then echo "The script for adding new dependencies is running" echo "Usage: $0 -addson DIR DEPENDENCY_DIRS" echo "$0 assumes that the new dependencies are in $TOPDIR/../" # ninput=$# # echo "number of input arguments: $ninput" dirs=$2 shift shift add_deps=$* echo "dependencies in $add_deps will be searched for $dirs" else dirs=$* fi for dir in $dirs; do # the following command removes a trailing slash DIR=`echo ${dir%/}` # the following would also work #DIR=`echo $dir | sed "s,/$,,"` # set inter-directory dependencies - only directories containing # modules that are used, or files that are included, by routines # in directory DIR should be listed in DEPENDS LEVEL1=.. LEVEL2=../.. # default DEPENDS="$LEVEL1/include" # for convenience, used later DEPEND1="$LEVEL1/include $LEVEL1/iotk/src $LEVEL1/FFTXlib $LEVEL1/LAXlib" DEPEND2="$LEVEL2/include $LEVEL2/iotk/src $LEVEL2/FFTXlib $LEVEL2/LAXlib $LEVEL2/Modules" case $DIR in Modules ) DEPENDS="$DEPEND1" ;; upftools ) DEPENDS="$DEPEND1 $LEVEL1/Modules" ;; LR_Modules ) DEPENDS="$DEPEND1 $LEVEL1/Modules $LEVEL1/PW/src" ;; ACFDT/src ) DEPENDS="$DEPEND2 $LEVEL2/PW/src $LEVEL2/PHonon/PH $LEVEL2/LR_Modules" ;; PW/src | CPV/src | atomic/src | GWW/gww ) DEPENDS="$DEPEND2" ;; PW/tools | PP/src | PWCOND/src | GWW/pw4gww | NEB/src ) DEPENDS="$DEPEND2 $LEVEL2/PW/src" ;; PHonon/FD | PHonon/PH | PHonon/Gamma | XSpectra/src | GIPAW/src ) DEPENDS="$DEPEND2 $LEVEL2/PW/src $LEVEL2/LR_Modules" ;; PHonon/D3 | GWW/head | TDDFPT/src ) DEPENDS="$DEPEND2 $LEVEL2/PW/src $LEVEL2/PHonon/PH $LEVEL2/LR_Modules" ;; GWW/bse ) DEPENDS="$DEPEND2 $LEVEL2/PW/src $LEVEL2/PHonon/PH $LEVEL2/LR_Modulesi $LEVEL2/GWW/pw4gww $LEVEL2/GWW/gww" ;; *) # if addson needs a make.depend file DEPENDS="$DEPENDS $add_deps" esac # generate dependencies file (only for directories that are present) if test -d $TOPDIR/../$DIR then cd $TOPDIR/../$DIR $TOPDIR/moduledep.sh $DEPENDS > make.depend $TOPDIR/includedep.sh $DEPENDS >> make.depend # handle special cases: hardware-specific monitoring tools sed '/@\/cineca\/prod\/hpm\/include\/f_hpm.h@/d;/@ifcore@/d' make.depend > make.depend.tmp # handle special cases: modules for C-fortran binding, system utilities sed '/@iso_c_binding@/d;/@f90_unix_env@/d;s/fft_scalar.*.o/fft_scalar.o/' make.depend.tmp > make.depend if test "$DIR" = "FFTXlib" then sed '/@mpi@/d;/@fft_scalar.*.f90@/d' make.depend > make.depend.tmp sed '/@mkl_dfti/d;/@fftw3.f/d;s/@fftw.c@/fftw.c/;s/@fft_param.f90@/fft_param.f90/' make.depend.tmp > make.depend fi if test "$DIR" = "LAXlib" then sed '/@mpi@/d;/@elpa1@/d' make.depend > make.depend.tmp sed 's/@la_param.f90@/la_param.f90/' make.depend.tmp > make.depend fi if test "$DIR" = "Modules" then sed '/@mpi@/d;/@elpa1@/d' make.depend > make.depend.tmp sed '/@mkl_dfti/d;/@fftw3.f/d' make.depend.tmp > make.depend fi if test "$DIR" = "PW/src" || test "$DIR" = "TDDFPT/src" then sed '/@environ_/d;/@solvent_tddfpt@/d' make.depend > make.depend.tmp sed '/fft_defs.h@/d' make.depend.tmp > make.depend fi if test "$DIR" = "CPV/src" then sed '/@f90_unix_proc@/d' make.depend > make.depend.tmp cp make.depend.tmp make.depend fi rm -f make.depend.tmp # check for missing dependencies if grep @ make.depend then notfound=1 echo WARNING: dependencies not found in directory $DIR else echo directory $DIR : ok fi else echo directory $DIR : not present in $TOPDIR fi done if test "$notfound" = "" then echo all dependencies updated successfully fi