130 lines
2.6 KiB
Text
130 lines
2.6 KiB
Text
# .Sanitize for devo/ld/scripttempl
|
|
|
|
# Each directory to survive its 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 directory.
|
|
|
|
Do-first:
|
|
|
|
tic80_files="tic80coff.sc"
|
|
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
|
|
keep_these_too="${tic80_files} ${keep_these_too}"
|
|
else
|
|
lose_these_too="${tic80_files} ${lose_these_too}"
|
|
fi
|
|
|
|
beos_files="i386beos.sc"
|
|
if ( echo $* | grep keep\-beos > /dev/null ) ; then
|
|
keep_these_too="${beos_files} ${keep_these_too}"
|
|
else
|
|
lose_these_too="${beos_files} ${lose_these_too}"
|
|
fi
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
|
# "Do-last:" 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:
|
|
|
|
README
|
|
a29k.sc
|
|
aix.sc
|
|
alpha.sc
|
|
aout.sc
|
|
armaout.sc
|
|
armcoff.sc
|
|
delta68.sc
|
|
ebmon29k.sc
|
|
elf.sc
|
|
elfd10v.sc
|
|
elfd30v.sc
|
|
elfppc.sc
|
|
fr30.sc
|
|
go32coff.sc
|
|
h8300.sc
|
|
h8300h.sc
|
|
h8300s.sc
|
|
h8500.sc
|
|
h8500b.sc
|
|
h8500c.sc
|
|
h8500m.sc
|
|
h8500s.sc
|
|
hppaelf.sc
|
|
i386coff.sc
|
|
i386go32.sc
|
|
i386lynx.sc
|
|
i386msdos.sc
|
|
i960.sc
|
|
m68kaux.sc
|
|
m68kcoff.sc
|
|
m68klynx.sc
|
|
m88kbcs.sc
|
|
mips.sc
|
|
mipsbsd.sc
|
|
nw.sc
|
|
pe.sc
|
|
ppcpe.sc
|
|
psos.sc
|
|
riscix.sc
|
|
sa29200.sc
|
|
sh.sc
|
|
sparccoff.sc
|
|
sparclynx.sc
|
|
st2000.sc
|
|
tic30aout.sc
|
|
tic30coff.sc
|
|
v850.sc
|
|
vanilla.sc
|
|
w65.sc
|
|
z8000.sc
|
|
|
|
Things-to-lose:
|
|
|
|
|
|
|
|
# The lines between the "Do-last:" line and the end of the file
|
|
# are executed as a /bin/sh shell script after everything else is
|
|
# done.
|
|
|
|
Do-last:
|
|
|
|
v850_files="v850.sc"
|
|
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
|
|
for i in $v850_files ; do
|
|
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Keeping v850e stuff in $i
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
for i in $v850_files ; do
|
|
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Removing traces of \"v850e\" from $i...
|
|
fi
|
|
cp $i new
|
|
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
if [ -n "${verbose}" ] ; then
|
|
echo Caching $i in .Recover...
|
|
fi
|
|
mv $i .Recover
|
|
fi
|
|
mv new $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# eof
|