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