* stabs.c (parse_stab_range_type): Handle 4 and 8 byte signed
[deliverable/binutils-gdb.git] / config / .Sanitize
CommitLineData
b2c17b4c 1# .Sanitize for devo/config
b6597455
SS
2
3# Each directory to survive its way into a release will need a file
0fd8d5d9
RP
4# like this one called "./.Sanitize". All keyword lines must exist,
5# and must exist in the order specified by this file. Each directory
6# in the tree will be processed, top down, in the following order.
7
8# Hash started lines like this one are comments and will be deleted
9# before anything else is done. Blank lines will also be squashed
10# out.
11
12# The lines between the "Do-first:" line and the "Things-to-keep:"
13# line are executed as a /bin/sh shell script before anything else is
b6597455 14# done in this directory.
0fd8d5d9
RP
15
16Do-first:
17
276c2d7d
GRK
18if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
19 keep_these_too="${keep_these_too} mt-r5900"
20else
21 lose_these_too="${lose_these_too} mt-r5900"
22fi
23
5266a484 24if ( echo $* | grep lose\-mswin > /dev/null ) ; then
043fadbe 25 lose_these_too="${lose_these_too} mh-windows"
5266a484
FF
26else
27 keep_these_too="${keep_these_too} mh-windows"
043fadbe
FF
28fi
29
0fd8d5d9 30# All files listed between the "Things-to-keep:" line and the
b2c17b4c 31# "Do-last:" line will be kept. All other files will be removed.
0fd8d5d9
RP
32# Directories listed in this section will have their own Sanitize
33# called. Directories not listed will be removed in their entirety
34# with rm -rf.
35
36Things-to-keep:
37
a19cc981 38ChangeLog
70faae66 39mh-a68bsd
04947ce1 40mh-aix386
d96234d2 41mh-apollo68
d4e36233 42mh-cxux
48240671 43mh-cygwin32
dd1f25e0 44mh-decstation
1f2f0a94
SC
45mh-delta88
46mh-dgux
32731d2b 47mh-dgux386
0186b094 48mh-elfalphapic
eebd76cb 49mh-go32
a9cad591 50mh-hp300
1b05371e 51mh-hpux
3cbb8192 52mh-hpux8
407a8389 53mh-irix4
aab15bdb 54mh-irix5
f3eca1ac 55mh-irix6
4677e30f 56mh-lynxos
461004f3 57mh-lynxrs6k
0e1ad456 58mh-m68kpic
0b0bd98b 59mh-mingw32
b0680d31 60mh-ncr3000
d376e43b 61mh-ncrsvr43
e4115748 62mh-necv4
6764c4cd 63mh-papic
897832ee 64mh-ppcpic
7bf617cf 65mh-riscos
77e4df42 66mh-sco
4358b911 67mh-solaris
6764c4cd 68mh-sparcpic
97c86946 69mh-sun3
1f2f0a94 70mh-sysv
18ab66f2 71mh-sysv4
21191d34 72mh-sysv5
d3c06c91 73mh-vaxult2
6764c4cd 74mh-x86pic
a528763a 75mpw
3c7c1a88 76mpw-mh-mpw
0186b094 77mt-elfalphapic
232e4b35 78mt-linux
0e1ad456 79mt-m68kpic
6764c4cd 80mt-netware
b2c17b4c 81mt-ospace
45329a2c 82mt-papic
897832ee 83mt-ppcpic
45329a2c 84mt-sparcpic
6764c4cd
JM
85mt-v810
86mt-x86pic
0fd8d5d9 87
87756e15 88Things-to-lose:
c5a81aaf 89acinclude.m4
b2c17b4c
ILT
90
91
92# The lines between the "Do-last:" line and the end of the file
93# are executed as a /bin/sh shell script after everything else is
94# done.
95
63e79660 96Do-last:
0fd8d5d9 97
54d5e0fb 98r5900_files="ChangeLog"
54d5e0fb
AMT
99if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
100 for i in $r5900_files ; do
101 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
102 if [ -n "${verbose}" ] ; then
103 echo Keeping r5900 stuff in $i
104 fi
105 fi
106 done
107else
108 for i in $r5900_files ; do
109 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
110 if [ -n "${verbose}" ] ; then
111 echo Removing traces of \"r5900\" from $i...
112 fi
113 cp $i new
114 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
115 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
116 if [ -n "${verbose}" ] ; then
117 echo Caching $i in .Recover...
118 fi
119 mv $i .Recover
120 fi
121 mv new $i
122 fi
123 done
124fi
125
6cd41c5e 126cygnus_files="mh-go32"
6cd41c5e
ILT
127if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
128 for i in $cygnus_files ; do
129 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
130 if [ -n "${verbose}" ] ; then
131 echo Keeping cygnus stuff in $i
132 fi
133 fi
134 done
135else
136 for i in $cygnus_files ; do
137 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
138 if [ -n "${verbose}" ] ; then
139 echo Removing traces of \"cygnus\" from $i...
140 fi
141 cp $i new
142 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
143 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
144 if [ -n "${verbose}" ] ; then
145 echo Caching $i in .Recover...
146 fi
147 mv $i .Recover
148 fi
149 mv new $i
150 fi
151 done
152fi
54d5e0fb 153
b2c17b4c 154# eof
This page took 0.211638 seconds and 4 git commands to generate.