revert Alpha/OpenBSD patches
[deliverable/binutils-gdb.git] / ld / emulparams / .Sanitize
1 # .Sanitize for devo/ld/emulparams
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 arc_files="arcelf.sh"
19
20 if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
22 else
23 lose_these_too="${arc_files} ${lose_these_too}"
24 fi
25
26 d30v_files="d30velf.sh"
27
28 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
29 keep_these_too="${d30v_files} ${keep_these_too}"
30 else
31 lose_these_too="${d30v_files} ${lose_these_too}"
32 fi
33
34 tic80_files="tic80coff.sh"
35
36 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
37 keep_these_too="${tic80_files} ${keep_these_too}"
38 else
39 lose_these_too="${tic80_files} ${lose_these_too}"
40 fi
41
42 v850_files="v850.sh"
43
44 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
45 keep_these_too="${v850_files} ${keep_these_too}"
46 else
47 lose_these_too="${v850_files} ${lose_these_too}"
48 fi
49
50 # All files listed between the "Things-to-keep:" line and the
51 # "Do-last:" line will be kept. All other files will be removed.
52 # Directories listed in this section will have their own Sanitize
53 # called. Directories not listed will be removed in their entirety
54 # with rm -rf.
55
56 Things-to-keep:
57
58 README
59 a29k.sh
60 aixppc.sh
61 aixrs6.sh
62 alpha.sh
63 armaoutb.sh
64 armaoutl.sh
65 armcoff.sh
66 armpe.sh
67 coff_sparc.sh
68 d10velf.sh
69 delta68.sh
70 ebmon29k.sh
71 elf32_sparc.sh
72 elf32bmip.sh
73 elf32ebmip.sh
74 elf32elmip.sh
75 elf32lmip.sh
76 elf32lppc.sh
77 elf32ppc.sh
78 elf32b4300.sh
79 elf32l4300.sh
80 elf64alpha.sh
81 elf64_sparc.sh
82 elf_i386.sh
83 gld960.sh
84 gld960coff.sh
85 go32.sh
86 h8300.sh
87 h8300h.sh
88 h8300s.sh
89 h8500.sh
90 h8500b.sh
91 h8500c.sh
92 h8500m.sh
93 h8500s.sh
94 hp300bsd.sh
95 hp3hpux.sh
96 hppaelf.sh
97 i386aout.sh
98 i386bsd.sh
99 i386coff.sh
100 i386go32.sh
101 i386linux.sh
102 i386lynx.sh
103 i386mach.sh
104 i386moss.sh
105 i386msdos.sh
106 i386nbsd.sh
107 i386nw.sh
108 i386pe.sh
109 lnk960.sh
110 m32relf.sh
111 m68k4knbsd.sh
112 m68kaout.sh
113 m68kaux.sh
114 m68kcoff.sh
115 m68kelf.sh
116 m68klinux.sh
117 m68klynx.sh
118 m68knbsd.sh
119 m68kpsos.sh
120 m88kbcs.sh
121 mipsbig.sh
122 mipsbsd.sh
123 mipsidt.sh
124 mipsidtl.sh
125 mipslit.sh
126 mipslnews.sh
127 mn10200.sh
128 mn10300.sh
129 news.sh
130 ns32knbsd.sh
131 pc532macha.sh
132 ppcmacos.sh
133 ppcnw.sh
134 ppcpe.sh
135 riscix.sh
136 sa29200.sh
137 sh.sh
138 shelf.sh
139 shl.sh
140 shlelf.sh
141 sparcaout.sh
142 sparclinux.sh
143 sparclynx.sh
144 sparcnbsd.sh
145 st2000.sh
146 sun3.sh
147 sun4.sh
148 vanilla.sh
149 vax.sh
150 vsta.sh
151 w65.sh
152 z8001.sh
153 z8002.sh
154
155 Things-to-lose:
156
157 # The lines between the "Do-last:" line and the end of the file
158 # are executed as a /bin/sh shell script after everything else is
159 # done.
160
161 Do-last:
This page took 0.034472 seconds and 4 git commands to generate.