* objdump.c (disassemble_data): Print function names when
[deliverable/binutils-gdb.git] / binutils / .Sanitize
CommitLineData
86e4d6e4 1# Sanitize.in for devo.
86e4d6e4
RP
2#
3
4# Each directory to survive it's way into a release will need a file
5# like this one called "./.Sanitize". All keyword lines must exist,
6# and must exist in the order specified by this file. Each directory
7# in the tree will be processed, top down, in the following order.
8
9# Hash started lines like this one are comments and will be deleted
10# before anything else is done. Blank lines will also be squashed
11# out.
12
13# The lines between the "Do-first:" line and the "Things-to-keep:"
14# line are executed as a /bin/sh shell script before anything else is
15# done in this
16
17Do-first:
18
86e4d6e4
RP
19
20# All files listed between the "Things-to-keep:" line and the
21# "Files-to-sed:" line will be kept. All other files will be removed.
22# Directories listed in this section will have their own Sanitize
23# called. Directories not listed will be removed in their entirety
24# with rm -rf.
25
26Things-to-keep:
27
28ChangeLog
0ce51ae9 29Makefile.dos
86e4d6e4 30Makefile.in
9c994225 31NEWS
5a77e916 32README
86e4d6e4
RP
33TODO
34alloca.c
5a77e916 35am29k-pinsn.c
05b47bfb 36ar.1
5a77e916 37ar.c
c0cc6912 38arlex.l
aef3999f 39arparse.y
c0cc6912
SC
40arsup.c
41arsup.h
c83497f5 42binutils.texi
86e4d6e4 43bucomm.c
5a77e916 44bucomm.h
0ce51ae9 45configure.bat
86e4d6e4 46configure.in
e49dde89 47config
86e4d6e4 48copy.c
86e4d6e4
RP
49filemode.c
50gmalloc.c
60c80016 51i386-pinsn.c
86e4d6e4 52i960-pinsn.c
5a77e916
SC
53is-ranlib.c
54is-strip.c
86e4d6e4 55m68k-pinsn.c
5a77e916
SC
56maybe-ranlib.c
57maybe-strip.c
58nm.1
86e4d6e4 59nm.c
5a77e916
SC
60not-ranlib.c
61not-strip.c
62objdump.1
86e4d6e4 63objdump.c
5a77e916
SC
64objdump.h
65ranlib.1
06a97fbd 66ranlib.sh
aef3999f 67sanity.sh
5a77e916 68size.1
86e4d6e4
RP
69size.c
70sparc-pinsn.c
5a77e916 71strip.1
86e4d6e4
RP
72version.c
73
74Do-last:
75
5d138676 76v9dirty="sparc-pinsn.c"
86e4d6e4 77
5d138676
JG
78if ( echo $* | grep keep\-v9 > /dev/null ) ; then
79 echo Keeping v9 in ${v9dirty}
80else
81 for i in ${v9dirty} ; do
82 echo Sanitizing v9 in $i
83 rm -f new
84 sed '/^#ifndef[ ]NO_V9/,/^#endif/d' < $i > new
85 if grep -s -i v9 new ; then
86 echo ***** SANITIZING V9 IN $i FAILED *****\a\a
87 fi
88 if [ -n "${safe}" ] ; then
89 mv $i .Recover
90 else
91 rm $i
92 fi
93 mv new $i
94 done
95fi
This page took 0.056854 seconds and 4 git commands to generate.