b17b1afda59d6680cb2caa953e353c7f1735f8fe
[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 rce_files="rce.sh"
27
28 if ( echo $* | grep keep\-rce > /dev/null ) ; then
29 keep_these_too="${rce_files} ${keep_these_too}"
30 else
31 lose_these_too="${rce_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.sh
44 alpha.sh
45 coff_sparc.sh
46 ebmon29k.sh
47 elf32_sparc.sh
48 elf64_sparc.sh
49 elf32bmip.sh
50 elf32lmip.sh
51 elf32ppc.sh
52 elf32ppcle.sh
53 elf_i386.sh
54 gld960.sh
55 gld960coff.sh
56 go32.sh
57 h8300.sh
58 h8300h.sh
59 h8500.sh
60 h8500b.sh
61 h8500c.sh
62 h8500s.sh
63 h8500m.sh
64 hp300bsd.sh
65 hp3hpux.sh
66 hppaelf.sh
67 i386aout.sh
68 i386bsd.sh
69 i386coff.sh
70 i386go32.sh
71 i386linux.sh
72 i386lynx.sh
73 i386mach.sh
74 i386nbsd.sh
75 i386nw.sh
76 lnk960.sh
77 m68kaout.sh
78 m68kcoff.sh
79 m68kelf.sh
80 m68klynx.sh
81 m68knbsd.sh
82 m88kbcs.sh
83 mipsbig.sh
84 mipsbsd.sh
85 mipsidt.sh
86 mipsidtl.sh
87 mipslit.sh
88 news.sh
89 ns32knbsd.sh
90 pc532machaout.sh
91 ppcnw.sh
92 riscix.sh
93 sa29200.sh
94 sh.sh
95 shl.sh
96 sparclynx.sh
97 sparcnbsd.sh
98 st2000.sh
99 sun3.sh
100 sun4.sh
101 vanilla.sh
102 vax.sh
103 vsta.sh
104 w65.sh
105 z8ksim.sh
106
107 Things-to-lose:
108
109 # The lines between the "Do-last:" line and the end of the file
110 # are executed as a /bin/sh shell script after everything else is
111 # done.
112
113 Do-last:
This page took 0.039921 seconds and 3 git commands to generate.