mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
37 lines
641 B
Bash
Executable File
37 lines
641 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Cleans a module directory
|
|
|
|
if [[ -z ${QPACKAGE_ROOT} ]]
|
|
then
|
|
print "The QPACKAGE_ROOT environment variable is not set."
|
|
print "Please reload the quantum_package.rc file."
|
|
exit -1
|
|
fi
|
|
source ${QPACKAGE_ROOT}/scripts/qp_include.sh
|
|
|
|
function do_clean()
|
|
{
|
|
rm -rf -- \
|
|
IRPF90_temp IRPF90_man Makefile.depend $(cat NEEDED_MODULES) include \
|
|
ezfio_interface.irp.f irpf90.make irpf90_entities tags $(ls_exe)
|
|
}
|
|
|
|
if [[ -z $1 ]]
|
|
then
|
|
check_current_dir_is_module
|
|
do_clean
|
|
else
|
|
check_current_dir_is_src
|
|
for i in $@
|
|
do
|
|
if [[ -d $i ]]
|
|
then
|
|
cd $i
|
|
do_clean
|
|
cd $OLDPWD
|
|
fi
|
|
done
|
|
fi
|
|
|