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

22 lines
401 B
Bash
Raw Normal View History

2015-12-20 01:09:14 +01:00
#!/bin/bash
# This script is supposed to run in $QMCCHEM_PATH
2019-07-23 17:27:02 +02:00
make -C ocaml clean
2015-12-20 01:09:14 +01:00
if [[ -d src/IRPF90_temp ]]
then
ninja -C src/IRPF90_temp -t clean
fi
ninja -t clean
rm -f ocaml/qmcchem ocaml/.ls_md5 ocaml/generated.ninja
rm -f EZFIO/Ocaml/ezfio.ml
cd src
rm -rf tags irpf90_entities irpf90.make IRPF90_temp IRPF90_man .ls_md5
cd MAIN
rm -f qmc qmcchem_info qmc_create_walkers
cd ../..