10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 03:15:19 +02:00
qmcchem/scripts/compile_ezfio.sh

19 lines
296 B
Bash
Raw Normal View History

2015-12-20 01:09:14 +01:00
#!/bin/bash
if [[ ! -f qmcchemrc ]]
then
echo "Error: qmcchemrc not found"
exit -1
fi
source make.config
source qmcchemrc
FCFLAGS="${FCFLAGS} -fPIC"
export IRPF90 FC FCFLAGS AR RANLIB
cd EZFIO
rm -f make.config
${NINJA} || exit -1
cp lib/libezfio{,_irp}.a ${QMCCHEM_PATH}/lib/ || exit 1