File: distclean.sh

package info (click to toggle)
sbcl 0.7.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,872 kB
  • ctags: 10,729
  • sloc: lisp: 140,342; ansic: 12,797; asm: 1,423; sh: 937; makefile: 54
file content (16 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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