* configure.in (w65-*-*): New target.
[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 rce_files="rce.sc"
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.sc
36 alpha.sc
37 aout.sc
38 ebmon29k.sc
39 elf.sc
40 go32coff.sc
41 h8300.sc
42 h8300h.sc
43 h8500.sc
44 h8500b.sc
45 h8500c.sc
46 h8500m.sc
47 h8500s.sc
48 hppaelf.sc
49 i386coff.sc
50 i386go32.sc
51 i386lynx.sc
52 i960.sc
53 m68kcoff.sc
54 m68klynx.sc
55 m88kbcs.sc
56 mips.sc
57 mipsbsd.sc
58 nw.sc
59 riscix.sc
60 sa29200.sc
61 sh.sc
62 sparccoff.sc
63 sparclynx.sc
64 st2000.sc
65 vanilla.sc
66 w65.sc
67 z8ksim.sc
68
69 Things-to-lose:
70
71 # The lines between the "Do-last:" line and the end of the file
72 # are executed as a /bin/sh shell script after everything else is
73 # done.
74
75 Do-last:
This page took 0.03916 seconds and 4 git commands to generate.