* Makefile.in, configure.in: Support for go32 coff.
[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
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 README
28 a29k.sh
29 alpha.sh
30 coff_sparc.sh
31 ebmon29k.sh
32 elf32_sparc.sh
33 elf64_sparc.sh
34 elf32mipb.sh
35 elf32ppc.sh
36 elf_i386.sh
37 gld960.sh
38 go32.sh
39 h8300.sh
40 h8300h.sh
41 h8500.sh
42 h8500b.sh
43 h8500c.sh
44 h8500s.sh
45 h8500m.sh
46 hp300bsd.sh
47 hp3hpux.sh
48 hppaelf.sh
49 i386aout.sh
50 i386bsd.sh
51 i386coff.sh
52 i386go32.sh
53 i386linux.sh
54 i386lynx.sh
55 i386mach.sh
56 lnk960.sh
57 m68kcoff.sh
58 m68klynx.sh
59 m88kbcs.sh
60 mipsbig.sh
61 mipsbsd.sh
62 mipsidt.sh
63 mipsidtl.sh
64 mipslit.sh
65 news.sh
66 sa29200.sh
67 sh.sh
68 sparclynx.sh
69 st2000.sh
70 sun3.sh
71 sun4.sh
72 vanilla.sh
73 vax.sh
74 vsta.sh
75 z8ksim.sh
76
77 Things-to-lose:
78
79 # The lines between the "Do-last:" line and the end of the file
80 # are executed as a /bin/sh shell script after everything else is
81 # done.
82
83 Do-last:
84
85 if ( echo $* | grep keep-v9 > /dev/null ) ; then
86 if [ -n "${verbose}" ] ; then
87 echo Keeping `pwd`/elf64_sparc.sh.
88 fi
89 else
90 if [ -n "${verbose}" ] ; then
91 echo Removing `pwd`/elf64_sparc.sh.
92 fi
93 if [ -n "${safe}" ] ; then
94 mv elf64_sparc.sh .Recover
95 else
96 rm elf64_sparc.sh
97 fi
98 fi
99