X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=clean.sh;h=c2bf8adc83ee026c87bd4c823e0d1675517fb649;hb=5164d4bba99fa9d486ceb3aa65c6c7b136702a11;hp=46ccee3e88329872dd46fd7ac67dd8f27d3cc2ec;hpb=722703e7cbd3a4b279a4c1baab5d95df2c23cce9;p=sbcl.git diff --git a/clean.sh b/clean.sh index 46ccee3..c2bf8ad 100755 --- a/clean.sh +++ b/clean.sh @@ -50,7 +50,7 @@ done # probably machine-generated translation of DocBook (*.sgml) files # core # probably a Unix core dump -- not part of the sources anyway -# *.o, *.lib, *.nm +# *.o, *.lib, *.nm, a.out # results of C-style linking, assembling, etc. # *.core, *.map # looks like SBCL SAVE-LISP-AND-DIE or GENESIS output, and @@ -59,7 +59,7 @@ done # common names for editor temporary files # TAGS, tags # files created by GNU etags and ctags -# .#*, *.orig, .*.orig +# .#*, *.orig, .*.orig, *.rej # rubbish left behind by CVS updates # *.htm, *.html # The system doc sources are SGML, any HTML is @@ -69,6 +69,8 @@ done # *.lisp-obj, *.fasl, *.x86f, *.axpf, *.lbytef, *.lib # typical extensions for fasl files (not just from SBCL, but # from other Lisp systems which might be used as xc hosts) +# test-passed +# generated by automatic directory-test-thyself procedure find . \( \ -type l -o \ -name '*~' -o \ @@ -76,6 +78,7 @@ find . \( \ -name '.#*' -o \ -name '*.orig' -o \ -name '.*.orig' -o \ + -name '*.rej' -o \ -name '?*.x86f' -o \ -name '?*.axpf' -o \ -name '?*.lbytef' -o \ @@ -89,12 +92,15 @@ find . \( \ -name '*.target-obj' -o \ -name '*.lib' -o \ -name '*.tmp' -o \ + -name '*.lisp-temp' -o \ -name '*.o' -o \ + -name 'a.out' -o \ -name 'sbcl' -o \ -name 'sbcl.h' -o \ -name 'depend' -o \ - -name '*.htm' -o \ - -name '*.html' -o \ -name 'TAGS' -o \ -name 'tags' -o \ + -name 'test-passed' -o \ -name 'local-target-features.lisp-expr' \) -print | xargs rm -f + +cd doc && sh ./clean.sh