]> Git Repo - binutils.git/blob - ld/emulparams/.Sanitize
Enable ld to build for RCE. This is not tested yet!
[binutils.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 rce_files="rce.sh"
19
20 if ( echo $* | grep keep\-rce > /dev/null ) ; then
21         keep_these_too="${rce_files} ${keep_these_too}"
22 else
23         lose_these_too="${rce_files} ${lose_these_too}"
24 fi
25
26 # All files listed between the "Things-to-keep:" line and the
27 # "Do-last:" line will be kept.  All other files will be removed.
28 # Directories listed in this section will have their own Sanitize
29 # called.  Directories not listed will be removed in their entirety
30 # with rm -rf.
31
32 Things-to-keep:
33
34 README
35 a29k.sh
36 alpha.sh
37 coff_sparc.sh
38 ebmon29k.sh
39 elf32_sparc.sh
40 elf64_sparc.sh
41 elf32bmip.sh
42 elf32lmip.sh
43 elf32ppc.sh
44 elf_i386.sh
45 gld960.sh
46 gld960coff.sh
47 go32.sh
48 h8300.sh
49 h8300h.sh
50 h8500.sh
51 h8500b.sh
52 h8500c.sh
53 h8500s.sh
54 h8500m.sh
55 hp300bsd.sh
56 hp3hpux.sh
57 hppaelf.sh
58 i386aout.sh
59 i386bsd.sh
60 i386coff.sh
61 i386go32.sh
62 i386linux.sh
63 i386lynx.sh
64 i386mach.sh
65 i386nbsd.sh
66 i386nw.sh
67 lnk960.sh
68 m68kaout.sh
69 m68kcoff.sh
70 m68klynx.sh
71 m68knbsd.sh
72 m88kbcs.sh
73 mipsbig.sh
74 mipsbsd.sh
75 mipsidt.sh
76 mipsidtl.sh
77 mipslit.sh
78 news.sh
79 ns32knbsd.sh
80 pc532machaout.sh
81 ppcnw.sh
82 riscix.sh
83 sa29200.sh
84 sh.sh
85 sparclynx.sh
86 sparcnbsd.sh
87 st2000.sh
88 sun3.sh
89 sun4.sh
90 vanilla.sh
91 vax.sh
92 vsta.sh
93 z8ksim.sh
94
95 Things-to-lose:
96
97 # The lines between the "Do-last:" line and the end of the file
98 # are executed as a /bin/sh shell script after everything else is
99 # done.
100
101 Do-last:
This page took 0.029248 seconds and 4 git commands to generate.