123456789101112131415 |
- #!/bin/sh
- #
- # Script to clean the developer distribution.
- #
- # This script removes all files that can be created. After running
- # this script, you'd need to run 'autoreconf --install' before
- # running './configure'.
- #
- # Copyright (C) 2009 ARM Research Labs, LLC
- #
- ##############################################################################
- make distclean
- find . -name '*~' -exec rm {} \;
- find . -name Makefile.in -exec rm {} \;
- rm -rf config autom4te.cache configure config.h* aclocal.m4 snf4cgp-* CGPSNF-*
|