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