mirror of https://github.com/abinit/abinit.git
59 lines
1.8 KiB
Bash
Executable File
59 lines
1.8 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
## Copyright (C) 2017-2025 ABINIT group (Yann Pouillon <devops@materialsevolution.es>)
|
|
|
|
#
|
|
# IMPORTANT NOTE:
|
|
#
|
|
# For maintainer use only!
|
|
#
|
|
# PLEASE DO NOT EDIT THIS FILE, AS IT COULD CAUSE A SERIOUS LOSS OF DATA.
|
|
# *** YOU HAVE BEEN WARNED! ***
|
|
#
|
|
|
|
# Check that we are in the right directory
|
|
if test ! -s "./configure.ac" -o ! -s "src/m_paw_atom.F90"; then
|
|
echo "wipeout: Cowardly refusing to remove something from here!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Make sure the whole directory tree is writable
|
|
chmod -R u+w .
|
|
|
|
# Remove temporary directories and files
|
|
echo "Removing temporary directories and files..."
|
|
find . -depth -name 'tmp*' -exec rm -rf {} \;
|
|
find . -depth -name '*.tmp' -exec rm -rf {} \;
|
|
echo "done."
|
|
|
|
# Remove autotools files
|
|
echo "Removing autotools files..."
|
|
rm -f core config.log config.status stamp-h1 config.h config.h.in*
|
|
rm -rf aclocal.m4 autom4te.cache configure confstat*
|
|
(test -d config/gnu && cd config/gnu && rm -f compile config.guess config.sub depcomp install-sh ltmain.sh missing test-driver)
|
|
(cd config/m4 && rm -f libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4)
|
|
echo "done."
|
|
|
|
# Remove Makefiles and machine-generated files
|
|
echo "Removing files produced by the configure script..."
|
|
rm -f libtool
|
|
find . -name Makefile -exec rm {} \;
|
|
find . -name Makefile.in -exec rm {} \;
|
|
find . -name '*.log' -exec rm {} \;
|
|
find . -name '*.trs' -exec rm {} \;
|
|
echo "done."
|
|
|
|
# Remove object files, libraries and programs
|
|
echo "Removing object files, libraries and programs..."
|
|
find . -depth -name '.deps' -exec rm -rf {} \;
|
|
find . -depth -name '.libs' -exec rm -rf {} \;
|
|
find . -name '*.la' -exec rm {} \;
|
|
find . -name '*.lo' -exec rm {} \;
|
|
find . -name '*.a' -exec rm {} \;
|
|
find . -name '*.o' -exec rm {} \;
|
|
echo "done."
|
|
|
|
# Remove built documentation files
|
|
echo "Removing built documentation files..."
|
|
echo "done."
|