1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#!/bin/sh
# $Source: bitbucket.org:berkeleylab/gasnet.git/unBootstrap $
# Terms of use are as specified in license.txt
# Description:
# This scripts undoes the effects of a "Bootstrap",
# removing all the automatically generated files and
# returning the source tree back to a fully "clean" state
rm -Rf autom4te*.cache
rm -f Makefile.in \
configure \
gasnet_config.h.in \
gasnet_config.h.in~ \
aclocal.m4 \
config.status \
stamp-h.in \
config-aux/Makefile.in \
config-aux/Makefile \
config-aux/compile \
ibv-conduit/Makefile.in \
ibv-conduit/contrib/Makefile.in \
mpi-conduit/Makefile.in \
mpi-conduit/contrib/Makefile.in \
ofi-conduit/Makefile.in \
ofi-conduit/contrib/Makefile.in \
smp-conduit/Makefile.in \
smp-conduit/contrib/Makefile.in \
udp-conduit/Makefile.in \
ucx-conduit/Makefile.in \
ucx-conduit/contrib/Makefile.in \
other/Makefile.in \
other/ammpi/Makefile.in \
other/amudp/Makefile.in \
other/contrib/Makefile.in \
other/firehose/Makefile.in \
other/valgrind/Makefile.in \
tests/Makefile
|