1991-12-01 04:45:47 +00:00
|
|
|
# Sanitize.in for devo.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Each directory to survive it's way into a release will need a file
|
|
|
|
# like this one called "./.Sanitize". All keyword lines must exist,
|
|
|
|
# and must exist in the order specified by this file. Each directory
|
|
|
|
# in the tree will be processed, top down, in the following order.
|
|
|
|
|
|
|
|
# Hash started lines like this one are comments and will be deleted
|
|
|
|
# before anything else is done. Blank lines will also be squashed
|
|
|
|
# out.
|
|
|
|
|
|
|
|
# The lines between the "Do-first:" line and the "Things-to-keep:"
|
|
|
|
# line are executed as a /bin/sh shell script before anything else is
|
|
|
|
# done in this
|
|
|
|
|
|
|
|
Do-first:
|
|
|
|
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
|
|
|
# "Files-to-sed:" line will be kept. All other files will be removed.
|
|
|
|
# Directories listed in this section will have their own Sanitize
|
|
|
|
# called. Directories not listed will be removed in their entirety
|
|
|
|
# with rm -rf.
|
|
|
|
|
|
|
|
Things-to-keep:
|
|
|
|
|
|
|
|
ChangeLog
|
|
|
|
a29k.h
|
|
|
|
arm.h
|
1993-02-14 21:54:59 +00:00
|
|
|
convex.h
|
1991-12-01 04:45:47 +00:00
|
|
|
h8300.h
|
1992-06-20 01:00:46 +00:00
|
|
|
hppa.h
|
1991-12-01 04:45:47 +00:00
|
|
|
i386.h
|
|
|
|
i860.h
|
|
|
|
i960.h
|
|
|
|
m68k.h
|
1992-05-05 03:12:59 +00:00
|
|
|
m68kmri.h
|
1991-12-01 04:45:47 +00:00
|
|
|
m88k.h
|
|
|
|
mips.h
|
|
|
|
np1.h
|
|
|
|
ns32k.h
|
|
|
|
pn.h
|
1994-01-22 00:15:29 +00:00
|
|
|
ppc.h
|
1991-12-01 04:45:47 +00:00
|
|
|
pyr.h
|
1992-04-07 20:53:43 +00:00
|
|
|
rs6k.h
|
1991-12-01 04:45:47 +00:00
|
|
|
sparc.h
|
|
|
|
tahoe.h
|
|
|
|
vax.h
|
|
|
|
|
1993-05-27 06:44:29 +00:00
|
|
|
Things-to-lose:
|
|
|
|
|
1991-12-01 04:45:47 +00:00
|
|
|
Do-last:
|
|
|
|
|
1994-07-26 23:06:41 +00:00
|
|
|
i960xl_files="ChangeLog i960.h"
|
|
|
|
if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Keeping i960xl stuff in $i960xl_files.
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ -n "${verbose}" ]; then
|
|
|
|
echo -n Cleaning i960xl in `pwd`:
|
|
|
|
fi
|
|
|
|
for f in $i960xl_files ; do
|
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo -n " " $f
|
|
|
|
fi
|
|
|
|
sed -e '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' -e '/XL/d' < $f > new
|
|
|
|
if [ -n "${safe}" ] ; then
|
|
|
|
mv $f .Recover
|
|
|
|
fi
|
|
|
|
mv new $f
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
1991-12-01 04:45:47 +00:00
|
|
|
# End of file.
|