binutils-gdb/ld/.Sanitize

121 lines
2.2 KiB
Plaintext
Raw Normal View History

1991-05-24 06:49:14 +09: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
1991-05-24 06:49:14 +09:00
Do-first:
1993-02-27 02:53:13 +08:00
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
keep_these_too=""
fi
1991-05-24 06:49:14 +09:00
# 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:
1993-05-27 14:44:29 +08:00
ChangeLog
1991-05-24 06:49:14 +09:00
Makefile.in
1993-05-18 03:45:17 +08:00
NEWS
1992-02-17 04:49:26 +08:00
README
1992-09-04 06:56:45 +08:00
TODO
cdtest-foo.cc
cdtest-foo.h
cdtest-func.cc
cdtest-main.cc
cdtest.exp
1991-05-24 06:49:14 +09:00
config
1991-09-24 04:59:12 +08:00
config.h
1992-02-22 08:11:39 +08:00
configure.bat
1991-05-24 06:49:14 +09:00
configure.in
emulparams
emultempl
1992-02-17 04:49:26 +08:00
genscripts.sh
h8-doc.texi
1992-08-18 02:35:59 +08:00
ld.1
gen-doc.texi
1991-09-24 04:59:12 +08:00
ld.h
ld.texinfo
1991-11-06 04:36:54 +08:00
ldctor.c
1991-12-08 09:27:59 +08:00
ldctor.h
1992-02-17 04:49:26 +08:00
ldemul.c
ldemul.h
lderror.c
1992-03-08 02:32:27 +08:00
lderror.h
1991-09-24 04:59:12 +08:00
ldexp.c
ldexp.h
ldfile.c
ldfile.h
ldgram.y
1992-02-17 04:49:26 +08:00
ldindr.c
ldindr.h
ldint.texinfo
1991-09-24 04:59:12 +08:00
ldlang.c
ldlang.h
ldlex.h
ldlex.l
ldmain.c
ldmain.h
ldmisc.c
ldmisc.h
ldsym.c
ldsym.h
ldver.c
ldver.h
1992-02-17 04:49:26 +08:00
ldwarn.c
1991-09-24 04:59:12 +08:00
ldwarn.h
ldwrite.c
ldwrite.h
lexsup.c
1992-04-16 07:11:53 +08:00
mri.c
1992-05-02 06:08:40 +08:00
mri.h
1992-02-17 04:49:26 +08:00
relax.c
1992-03-08 02:32:27 +08:00
relax.h
scripttempl
1991-05-24 06:49:14 +09:00
1993-05-27 14:44:29 +08:00
Things-to-lose:
1991-05-24 06:49:14 +09:00
Do-last:
1993-02-27 02:53:13 +08:00
echo Looking for signs of \"v9\"...
# Don't try to clean directories here, as the 'mv' command will fail.
# Also, grep fails on NFS mounted directories.
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
echo Keeping v9 stuff in $i
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
echo Cleaning the \"v9\" out of $i...
cp $i new
sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
echo Caching $i in .Recover...
mv $i .Recover
fi
mv new $i
fi
done
fi
1991-05-24 06:49:14 +09:00
# End of file.