#!/bin/sh # # prepare-clean # # Author: Pekka Riikonen # # Copyright (C) 2000 Pekka Riikonen # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # # Removes *all* automatically generated files so that after calling this # the tree is completely clean and can be prepared for configuration # and compilation by calling ./prepare. # echo "Cleaning entire SILC source tree..." echo "All errors and warnings may be safely ignored." make clean -k make distclean -k rm -f includes/stamp-* rm -f includes/silcconfig.* rm -f includes/version_internal.h rm -f includes/silcdefs.h.in rm -f Makefile.in rm -f doc/draft-*.txt rm -f doc/Makefile.in rm -f includes/Makefile.in rm -f lib/Makefile.in rm -f lib/contrib/Makefile.in rm -f lib/silcclient/Makefile.in rm -f lib/silccore/Makefile.in rm -f lib/silcutil/Makefile.in rm -f lib/silccrypt/Makefile.in rm -f lib/silcmath/Makefile.in rm -f lib/silcsim/Makefile.in rm -f lib/silcsim/modules/Makefile.in rm -f lib/silcske/Makefile.in rm -f lib/trq/tests/Makefile rm -f lib/trq/trq_test/Makefile rm -rf lib/silcmath/gmp/.deps rm -f silcd/Makefile.in silcd/log* silcd/*.log rm -f silc/Makefile.in silc/log* silc/*.log rm -f aclocal.m4 rm -f config.status rm -f configure echo "Done."