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