* ldgram.y (atype): Accept parentheses with no type.
[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 d30v_files="elfd30v.sc"
19
20 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
21 keep_these_too="${d30v_files} ${keep_these_too}"
22 else
23 lose_these_too="${d30v_files} ${lose_these_too}"
24 fi
25
26 tic80_files="tic80coff.sc"
27
28 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
29 keep_these_too="${tic80_files} ${keep_these_too}"
30 else
31 lose_these_too="${tic80_files} ${lose_these_too}"
32 fi
33
34 v850_files="v850.sc"
35
36 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
37 keep_these_too="${v850_files} ${keep_these_too}"
38 else
39 lose_these_too="${v850_files} ${lose_these_too}"
40 fi
41
42 # All files listed between the "Things-to-keep:" line and the
43 # "Do-last:" line will be kept. All other files will be removed.
44 # Directories listed in this section will have their own Sanitize
45 # called. Directories not listed will be removed in their entirety
46 # with rm -rf.
47
48 Things-to-keep:
49
50 README
51 a29k.sc
52 aix.sc
53 alpha.sc
54 armaout.sc
55 armcoff.sc
56 aout.sc
57 delta68.sc
58 ebmon29k.sc
59 elf.sc
60 elfd10v.sc
61 elfppc.sc
62 go32coff.sc
63 h8300.sc
64 h8300h.sc
65 h8300s.sc
66 h8500.sc
67 h8500b.sc
68 h8500c.sc
69 h8500m.sc
70 h8500s.sc
71 hppaelf.sc
72 i386coff.sc
73 i386go32.sc
74 i386lynx.sc
75 i386msdos.sc
76 i960.sc
77 m68kaux.sc
78 m68kcoff.sc
79 m68klynx.sc
80 m88kbcs.sc
81 mips.sc
82 mipsbsd.sc
83 nw.sc
84 pe.sc
85 ppcpe.sc
86 psos.sc
87 riscix.sc
88 sa29200.sc
89 sh.sc
90 sparccoff.sc
91 sparclynx.sc
92 st2000.sc
93 vanilla.sc
94 w65.sc
95 z8000.sc
96
97 Things-to-lose:
98
99 # The lines between the "Do-last:" line and the end of the file
100 # are executed as a /bin/sh shell script after everything else is
101 # done.
102
103 Do-last:
This page took 0.034313 seconds and 4 git commands to generate.