Delete testcases, these don't appear in the base chip which is all we
[deliverable/binutils-gdb.git] / config / .Sanitize
1 # .Sanitize for devo/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\-r5900 > /dev/null ) ; then
19 keep_these_too="${keep_these_too} mt-r5900"
20 else
21 lose_these_too="${lose_these_too} mt-r5900"
22 fi
23
24 # All files listed between the "Things-to-keep:" line and the
25 # "Files-to-sed:" line will be kept. All other files will be removed.
26 # Directories listed in this section will have their own Sanitize
27 # called. Directories not listed will be removed in their entirety
28 # with rm -rf.
29
30 Things-to-keep:
31
32 ChangeLog
33 mh-a68bsd
34 mh-aix386
35 mh-apollo68
36 mh-cxux
37 mh-cygwin32
38 mh-decstation
39 mh-delta88
40 mh-dgux
41 mh-dgux386
42 mh-go32
43 mh-hp300
44 mh-hpux
45 mh-hpux8
46 mh-irix4
47 mh-irix5
48 mh-irix6
49 mh-lynxos
50 mh-lynxrs6k
51 mh-m68kpic
52 mh-ncr3000
53 mh-ncrsvr43
54 mh-necv4
55 mh-papic
56 mh-ppcpic
57 mh-riscos
58 mh-sco
59 mh-solaris
60 mh-sparcpic
61 mh-sun3
62 mh-sysv
63 mh-sysv4
64 mh-vaxult2
65 mh-windows
66 mh-x86pic
67 mpw
68 mpw-mh-mpw
69 mt-m68kpic
70 mt-netware
71 mt-papic
72 mt-ppcpic
73 mt-sparcpic
74 mt-v810
75 mt-x86pic
76
77 Things-to-lose:
78
79 Do-last:
80
81 r5900_files="ChangeLog"
82
83 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
84 for i in $r5900_files ; do
85 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
86 if [ -n "${verbose}" ] ; then
87 echo Keeping r5900 stuff in $i
88 fi
89 fi
90 done
91 else
92 for i in $r5900_files ; do
93 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
94 if [ -n "${verbose}" ] ; then
95 echo Removing traces of \"r5900\" from $i...
96 fi
97 cp $i new
98 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
99 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
100 if [ -n "${verbose}" ] ; then
101 echo Caching $i in .Recover...
102 fi
103 mv $i .Recover
104 fi
105 mv new $i
106 fi
107 done
108 fi
109
110 cygnus_files="mh-go32"
111
112 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
113 for i in $cygnus_files ; do
114 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
115 if [ -n "${verbose}" ] ; then
116 echo Keeping cygnus stuff in $i
117 fi
118 fi
119 done
120 else
121 for i in $cygnus_files ; do
122 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
123 if [ -n "${verbose}" ] ; then
124 echo Removing traces of \"cygnus\" from $i...
125 fi
126 cp $i new
127 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
128 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
129 if [ -n "${verbose}" ] ; then
130 echo Caching $i in .Recover...
131 fi
132 mv $i .Recover
133 fi
134 mv new $i
135 fi
136 done
137 fi
138
139 # End of file.
This page took 0.032292 seconds and 4 git commands to generate.