add elfarm.sc to things to keep
[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 tic80_files="tic80coff.sc"
19 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
20 keep_these_too="${tic80_files} ${keep_these_too}"
21 else
22 lose_these_too="${tic80_files} ${lose_these_too}"
23 fi
24
25 beos_files="i386beos.sc"
26 if ( echo $* | grep keep\-beos > /dev/null ) ; then
27 keep_these_too="${beos_files} ${keep_these_too}"
28 else
29 lose_these_too="${beos_files} ${lose_these_too}"
30 fi
31
32 # All files listed between the "Things-to-keep:" line and the
33 # "Do-last:" line will be kept. All other files will be removed.
34 # Directories listed in this section will have their own Sanitize
35 # called. Directories not listed will be removed in their entirety
36 # with rm -rf.
37
38 Things-to-keep:
39
40 README
41 a29k.sc
42 aix.sc
43 alpha.sc
44 aout.sc
45 armaout.sc
46 armcoff.sc
47 delta68.sc
48 ebmon29k.sc
49 elf.sc
50 elfarm.sc
51 elfd10v.sc
52 elfd30v.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 tic30aout.sc
86 tic30coff.sc
87 v850.sc
88 vanilla.sc
89 w65.sc
90 z8000.sc
91
92 Things-to-lose:
93
94
95
96 # The lines between the "Do-last:" line and the end of the file
97 # are executed as a /bin/sh shell script after everything else is
98 # done.
99
100 Do-last:
101
102 v850_files="v850.sc"
103 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
104 for i in $v850_files ; do
105 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
106 if [ -n "${verbose}" ] ; then
107 echo Keeping v850e stuff in $i
108 fi
109 fi
110 done
111 else
112 for i in $v850_files ; do
113 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
114 if [ -n "${verbose}" ] ; then
115 echo Removing traces of \"v850e\" from $i...
116 fi
117 cp $i new
118 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
119 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
120 if [ -n "${verbose}" ] ; then
121 echo Caching $i in .Recover...
122 fi
123 mv $i .Recover
124 fi
125 mv new $i
126 fi
127 done
128 fi
129
130 # eof
This page took 0.033389 seconds and 4 git commands to generate.