Aesthetic tweaks
[sbcl/simd.git] / distclean.sh
blob41ed1b6a7ab0d885c0db7ee2ed9d85b0eb428340
1 #!/bin/sh
2 set -e
4 # a superset of clean.sh, cleaning up not only automatically
5 # generated files but other things (e.g. customization files)
6 # which shouldn't be in the distribution
8 # It's not unheard of to copy the old CMU CL docs into their
9 # traditional sbcl-0.6.x place. If so, it shouldn't end up in
10 # the distribution.
11 rm -rf doc/cmucl
13 # miscellaneous other customizations which shouldn't be propagated
14 rm -rf customize-target-features.lisp
16 # Since the CVS/ subdirectories on my (WHN) machine have CVS/Root
17 # containing
18 # :ext:wnewman@cvs.sbcl.sourceforge.net:/cvsroot/sbcl
19 # they're not useful for anyone else, so blow them away. (And even
20 # if we could set them up to refer to CVS in a way that someone else
21 # could use, perhaps referring to SourceForge anoncvs, what'd be the
22 # point? I'd expect a comfortable majority of those who want to do
23 # CVS operations would be inclined to start with "cvs co" anyway.)
24 find . \( -type d -a -name CVS \) -print | xargs rm -r
26 # Fall through to ordinary cleanup.
27 sh clean.sh