2015-03-25 23:03:51 +01:00
|
|
|
#!/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 -- \
|
2015-04-30 17:36:36 +02:00
|
|
|
IRPF90_temp IRPF90_man Makefile.depend $(only_children_to_all_genealogy.py) include \
|
2015-04-20 10:12:08 +02:00
|
|
|
ezfio_interface.irp.f irpf90.make irpf90_entities tags $(ls_exe) *.mod
|
2015-03-25 23:03:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|