vr5900 -> r5900
[deliverable/binutils-gdb.git] / ld / scripttempl / .Sanitize
1 # .Sanitize for devo/ld/scripttempl.
2
3 # Each directory to survive its way into a release will need a file
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
14 # done in this directory.
15
16 Do-first:
17
18 d30v_files="elfd30v.sc"
19
20 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
21 keep_these_too="${d30v_files} ${keep_these_too}"
22 else
23 lose_these_too="${d30v_files} ${lose_these_too}"
24 fi
25
26 tic80_files="tic80coff.sc"
27
28 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
29 keep_these_too="${tic80_files} ${keep_these_too}"
30 else
31 lose_these_too="${tic80_files} ${lose_these_too}"
32 fi
33
34 # All files listed between the "Things-to-keep:" line and the
35 # "Do-last:" line will be kept. All other files will be removed.
36 # Directories listed in this section will have their own Sanitize
37 # called. Directories not listed will be removed in their entirety
38 # with rm -rf.
39
40 Things-to-keep:
41
42 README
43 a29k.sc
44 aix.sc
45 alpha.sc
46 armaout.sc
47 armcoff.sc
48 aout.sc
49 delta68.sc
50 ebmon29k.sc
51 elf.sc
52 elfd10v.sc
53 elfppc.sc
54 go32coff.sc
55 h8300.sc
56 h8300h.sc
57 h8300s.sc
58 h8500.sc
59 h8500b.sc
60 h8500c.sc
61 h8500m.sc
62 h8500s.sc
63 hppaelf.sc
64 i386coff.sc
65 i386go32.sc
66 i386lynx.sc
67 i386msdos.sc
68 i960.sc
69 m68kaux.sc
70 m68kcoff.sc
71 m68klynx.sc
72 m88kbcs.sc
73 mips.sc
74 mipsbsd.sc
75 nw.sc
76 pe.sc
77 ppcpe.sc
78 psos.sc
79 riscix.sc
80 sa29200.sc
81 sh.sc
82 sparccoff.sc
83 sparclynx.sc
84 st2000.sc
85 v850.sc
86 vanilla.sc
87 w65.sc
88 z8000.sc
89
90 Things-to-lose:
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
96 Do-last:
97
98 v850_files="v850.sc"
99
100 if ( echo $* | grep keep\-v850eq > /dev/null ) ; then
101 for i in $v850_files ; do
102 if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
103 if [ -n "${verbose}" ] ; then
104 echo Keeping v850eq stuff in $i
105 fi
106 fi
107 done
108 else
109 for i in $v850_files ; do
110 if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
111 if [ -n "${verbose}" ] ; then
112 echo Removing traces of \"v850eq\" from $i...
113 fi
114 cp $i new
115 sed '/start\-sanitize\-v850eq/,/end-\sanitize\-v850eq/d' < $i > new
116 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
117 if [ -n "${verbose}" ] ; then
118 echo Caching $i in .Recover...
119 fi
120 mv $i .Recover
121 fi
122 mv new $i
123 fi
124 done
125 fi
126 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
127 for i in $v850_files ; do
128 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
129 if [ -n "${verbose}" ] ; then
130 echo Keeping v850e stuff in $i
131 fi
132 fi
133 done
134 else
135 if ( echo $* | grep keep\-v850eq > /dev/null ) ; then
136 true
137 else
138 for i in $v850_files ; do
139 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
140 if [ -n "${verbose}" ] ; then
141 echo Removing traces of \"v850e\" from $i...
142 fi
143 cp $i new
144 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
145 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
146 if [ -n "${verbose}" ] ; then
147 echo Caching $i in .Recover...
148 fi
149 mv $i .Recover
150 fi
151 mv new $i
152 fi
153 done
154 fi
155 fi
156
This page took 0.032418 seconds and 4 git commands to generate.