mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
(The old CMU CL documentation is now available from <ftp://sbcl.sourceforge.net/pub/sbcl/cmucl-docs.tar.bz2>.) tweaked docs/.cvsignore so that if you like keeping the old CMU CL documentation in the old place, CVS doesn't pester you about it
17 lines
492 B
Bash
17 lines
492 B
Bash
#!/bin/sh
|
|
|
|
# a superset of clean.sh, cleaning up not only automatically
|
|
# generated files but other things (e.g. customization files)
|
|
# which shouldn't be in the distribution
|
|
|
|
# It's not unheard of to copy the old CMU CL docs into their
|
|
# traditional sbcl-0.6.x place. If so, it shouldn't end up in
|
|
# the distribution.
|
|
rm -rf doc/cmucl
|
|
|
|
# miscellaneous other customizations which shouldn't be propagated
|
|
rm -rf customize-target-features.lisp
|
|
|
|
# Fall through to ordinary cleanup.
|
|
sh clean.sh
|