qmcchem/scripts/clean.sh

23 lines
382 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
2019-10-01 09:36:29 +02:00
make -C src/IRPF90_temp clean
2015-12-20 01:09:14 +01:00
fi
2019-10-01 09:36:29 +02:00
make -C EZFIO clean
2019-09-30 20:09:54 +02:00
rm -f ocaml/qmcchem ocaml/.ls_md5
2015-12-20 01:09:14 +01:00
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 ../..