]> Git Repo - binutils.git/blob - ld/config/.Sanitize
Opps.
[binutils.git] / ld / config / .Sanitize
1 # .Sanitize for devo/ld/config
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
19 # All files listed between the "Things-to-keep:" line and the
20 # "Do-last:" line will be kept.  All other files will be removed.
21 # Directories listed in this section will have their own Sanitize
22 # called.  Directories not listed will be removed in their entirety
23 # with rm -rf.
24
25 Things-to-keep:
26
27 alpha.mt
28 alphaosf.mh
29 coff-a29k.mt
30 coff-h8300.mt
31 coff-h8500.mt
32 coff-sh.mt
33 delta88.mh
34 dgux.mh
35 ebmon29k.mt
36 go32.mt
37 hp300.mh
38 hp300bsd.mt
39 hp300hpux.mt
40 hppaelf.mh
41 hppaelf.mt
42 i386-aout.mt
43 i386-bsd.mt
44 i386-coff.mt
45 i386-elf.mt
46 i386-linux.mt
47 i386-lynx.mt
48 i386-mach.mt
49 i386sco.mh
50 i386v.mh
51 i386v.mt
52 i386v4.mh
53 i960.mt
54 ieee-h8300.mt
55 irix4.mh
56 m68k-coff.mt
57 m68k.mt
58 m68k-lynx.mt
59 m68kv.mt
60 m88k-bcs.mt
61 mipsbsd.mt
62 mips-big.mt
63 mips-idt.mt
64 mips-idtl.mt
65 mips-lit.mt
66 mipsb-elf32.mt
67 news.mt
68 ose68.mt
69 rtbsd.mh
70 sa29200.mt
71 solaris2.mh
72 sparc64-elf.mt
73 sparc-ll.mh
74 sparc-lynx.mt
75 st2000.mt
76 sun3.mh
77 sun3.mt
78 sun4.mt
79 sun4sol2.mt
80 vax.mt
81 vsta.mt
82 vxworks68.mt
83 z8ksim.mt
84
85 Things-to-lose:
86
87 # The lines between the "Do-last:" line and the end of the file
88 # are executed as a /bin/sh shell script after everything else is
89 # done.
90
91 Do-last:
92
93 if ( echo $* | grep keep-v9 > /dev/null ) ; then
94         if [ -n "${verbose}" ] ; then
95                 echo Keeping `pwd`/sparc64-elf.mt.
96         fi
97 else
98         if [ -n "${verbose}" ] ; then
99                 echo Removing `pwd`/sparc64-elf.mt.
100         fi
101         if [ -n "${safe}" ] ; then
102                 mv sparc64-elf.mt .Recover
103         else
104                 rm sparc64-elf.mt
105         fi
106 fi
This page took 0.029386 seconds and 4 git commands to generate.