mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
Initial revision
This commit is contained in:
parent
245ed2ea54
commit
1ee1fd7e97
141
include/aout/.Sanitize
Normal file
141
include/aout/.Sanitize
Normal file
@ -0,0 +1,141 @@
|
||||
|
||||
# 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
|
||||
aout64.h
|
||||
ar.h
|
||||
encap.h
|
||||
host.h
|
||||
hp.h
|
||||
ranlib.h
|
||||
reloc.h
|
||||
stab.def
|
||||
stab_gnu.h
|
||||
sun4.h
|
||||
|
||||
Do-last:
|
||||
|
||||
v9dirty="aout64.h"
|
||||
|
||||
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
|
||||
echo Keeping v9 in ${v9dirty}
|
||||
else
|
||||
for i in ${v9dirty} ; do
|
||||
echo Sanitizing v9 in $i
|
||||
rm -f new
|
||||
grep -v v9 $i > new
|
||||
if [ -n "${safe}" ] ; then
|
||||
mv $i .Recover
|
||||
else
|
||||
rm $i
|
||||
fi
|
||||
mv new $i
|
||||
done
|
||||
fi
|
||||
|
||||
echo Done in `pwd`.
|
||||
|
||||
#
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.1 1991/12/01 04:35:59 sac
|
||||
# Initial revision
|
||||
#
|
||||
# Revision 1.22 1991/11/27 22:25:34 sac
|
||||
# Added coff-h8300.h
|
||||
#
|
||||
# Revision 1.21 1991/11/21 04:06:22 gnu
|
||||
# Bring in HP a.out remnants from GDB. Eliminate obsolete a.out.gnu.h.
|
||||
#
|
||||
# Revision 1.20 1991/10/25 10:21:10 gnu
|
||||
# Rename coff-related files.
|
||||
#
|
||||
# Revision 1.19 1991/10/25 07:59:50 gnu
|
||||
# rs6000
|
||||
#
|
||||
# Revision 1.18 1991/10/24 18:12:14 fnf
|
||||
# Add "dwarf.h".
|
||||
#
|
||||
# Revision 1.17 1991/10/16 01:08:08 gnu
|
||||
# Remove include files to bfd/hosts.
|
||||
#
|
||||
# Revision 1.16 1991/10/05 06:18:24 gnu
|
||||
# a.out.vax.h gone.
|
||||
#
|
||||
# Revision 1.15 1991/10/03 22:24:27 gnu
|
||||
# Add elf-*.h files.
|
||||
#
|
||||
# Revision 1.14 1991/09/26 22:46:53 steve
|
||||
# Newly created
|
||||
#
|
||||
# Revision 1.13 1991/09/13 05:17:53 gnu
|
||||
# Removes sparc-opcode.h rather than the file it is sanitizing, if not testing!
|
||||
# (fixed...)
|
||||
#
|
||||
# Revision 1.12 1991/09/04 02:51:18 rich
|
||||
# Adding "recover"'ability.
|
||||
#
|
||||
# Revision 1.11 1991/09/02 21:21:47 rich
|
||||
# Recover the editted files.
|
||||
#
|
||||
# Revision 1.10 1991/08/29 00:34:45 gnu
|
||||
# Paperwork handled for AMD Coff.
|
||||
#
|
||||
# Revision 1.9 1991/08/22 08:00:35 gnu
|
||||
# Add ChangeLog for Include.
|
||||
#
|
||||
# Revision 1.8 1991/07/31 17:36:04 gnu
|
||||
# Remove amdcoff.h by default because its copyright is not assigned to FSF.
|
||||
# "Sanitize -keep-29k" will keep it.
|
||||
#
|
||||
# Revision 1.7 1991/07/31 03:11:46 gnu
|
||||
# Remove symseg.h, the ancient GDB symbol-segments (gdb-specific debug
|
||||
# information) definition.
|
||||
#
|
||||
# Revision 1.6 1991/07/24 01:07:25 gnu
|
||||
# Add COPYING file.
|
||||
#
|
||||
# Revision 1.5 1991/07/24 00:47:13 gnu
|
||||
# Blow away v9 stuff in aout64.h too.
|
||||
#
|
||||
# Revision 1.4 1991/07/15 23:34:14 steve
|
||||
# *** empty log message ***
|
||||
#
|
||||
# Revision 1.3 1991/06/14 22:14:07 steve
|
||||
# *** empty log message ***
|
||||
#
|
||||
# Revision 1.2 1991/05/31 11:26:52 gnu
|
||||
# Add i386coff.h. Print msg when sanitizing sparc-opcode.h.
|
||||
#
|
||||
# Revision 1.1 1991/05/23 17:00:59 rich
|
||||
# Initial revision
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
# End of file.
|
47
include/coff/.Sanitize
Normal file
47
include/coff/.Sanitize
Normal file
@ -0,0 +1,47 @@
|
||||
# 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
|
||||
h8300.h
|
||||
i386.h
|
||||
i960.h
|
||||
internal.h
|
||||
m68k.h
|
||||
m88k.h
|
||||
mips.h
|
||||
rs6000.h
|
||||
|
||||
Do-last:
|
||||
|
||||
echo Done in `pwd`.
|
||||
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
# End of file.
|
41
include/elf/.Sanitize
Normal file
41
include/elf/.Sanitize
Normal file
@ -0,0 +1,41 @@
|
||||
# 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
|
||||
common.h
|
||||
dwarf.h
|
||||
external.h
|
||||
internal.h
|
||||
|
||||
Do-last:
|
||||
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
# End of file.
|
73
include/opcode/.Sanitize
Normal file
73
include/opcode/.Sanitize
Normal file
@ -0,0 +1,73 @@
|
||||
# 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
|
||||
h8300.h
|
||||
i386.h
|
||||
i860.h
|
||||
i960.h
|
||||
m68k.h
|
||||
m88k.h
|
||||
mips.h
|
||||
np1.h
|
||||
ns32k.h
|
||||
pn.h
|
||||
pyr.h
|
||||
sparc.h
|
||||
tahoe.h
|
||||
vax.h
|
||||
|
||||
Do-last:
|
||||
|
||||
v9dirty="sparc.h"
|
||||
|
||||
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
|
||||
echo Keeping v9 in ${v9dirty}
|
||||
else
|
||||
for i in ${v9dirty} ; do
|
||||
echo Sanitizing v9 in $i
|
||||
rm -f new
|
||||
grep -v v9 $i > new
|
||||
if [ -n "${safe}" ] ; then
|
||||
mv $i .Recover
|
||||
else
|
||||
rm $i
|
||||
fi
|
||||
mv new $i
|
||||
done
|
||||
fi
|
||||
|
||||
echo Done in `pwd`.
|
||||
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
# End of file.
|
Loading…
Reference in New Issue
Block a user