mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 21:24:02 +01:00
37 lines
641 B
Bash
37 lines
641 B
Bash
|
#!/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
|
||
|
|