]> Git Repo - binutils.git/blob - gdb/config/.Sanitize
Support for bi-endian remote breakpoints.
[binutils.git] / gdb / config / .Sanitize
1 # .Sanitize for devo/gdb/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 if ( echo $* | grep keep\-arc > /dev/null ) ; then
19         keep_these_too="arc ${keep_these_too}"
20 else
21         lose_these_too="arc ${lose_these_too}"
22 fi
23
24 gm_files="tm-magic.h"
25
26 if ( echo $* | grep keep\-gm > /dev/null ) ; then
27         keep_these_too="${gm_files} ${keep_these_too}"
28         if [ -n "${verbose}" ] ; then
29                 echo Keeping ${gm_files}
30         fi
31 else
32         lose_these_too="${gm_files} ${lose_these_too}"
33         if [ -n "${verbose}" ] ; then
34                 echo Deleting ${gm_files}
35         fi
36 fi
37
38 # All files listed between the "Things-to-keep:" line and the
39 # "Files-to-sed:" line will be kept.  All other files will be removed.
40 # Directories listed in this section will have their own Sanitize
41 # called.  Directories not listed will be removed in their entirety
42 # with rm -rf.
43
44 Things-to-keep:
45
46 a29k
47 alpha
48 arm
49 convex
50 gould
51 h8300
52 h8500
53 i386
54 i960
55 m68k
56 m88k
57 mips
58 nm-empty.h
59 nm-gnu.h
60 nm-lynx.h
61 nm-m3.h
62 nm-nbsd.h
63 nm-sysv4.h
64 none
65 ns32k
66 pa
67 powerpc
68 pyr
69 romp
70 rs6000
71 sh
72 sparc
73 tahoe
74 tm-lynx.h
75 tm-nbsd.h
76 tm-sunos.h
77 tm-sysv4.h
78 vax
79 xm-aix4.h
80 xm-lynx.h
81 xm-mpw.h
82 xm-nbsd.h
83 xm-sysv4.h
84 w65
85 z8k
86
87 Things-to-lose:
88
89 Do-last:
90
91 # End of file.
This page took 0.02964 seconds and 4 git commands to generate.