* cgen.h (enum cgen_mode): Add CGEN_MODE_TARGET_MAX, CGEN_MODE_INT,
[deliverable/binutils-gdb.git] / include / .Sanitize
1 # .Sanitize for devo/include.
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 # "Files-to-sed:" 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 COPYING
28 ChangeLog
29 ansidecl.h
30 aout
31 bfdlink.h
32 bout.h
33 callback.h
34 coff
35 demangle.h
36 dis-asm.h
37 elf
38 floatformat.h
39 fnmatch.h
40 fopen-bin.h
41 fopen-same.h
42 fopen-vms.h
43 gdbm.h
44 getopt.h
45 hp-symtab.h
46 ieee.h
47 libiberty.h
48 mpw
49 nlm
50 oasys.h
51 objalloc.h
52 obstack.h
53 os9k.h
54 opcode
55 progress.h
56 regs
57 remote-sim.h
58 splay-tree.h
59 symcat.h
60 wait.h
61
62 Things-to-lose:
63
64
65 Do-last:
66
67 if [ -n "${verbose}" ] ; then
68 echo Processing \"tic80\"...
69 fi
70
71 tic80_files="ChangeLog dis-asm.h"
72 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
73 for i in $tic80_files ; do
74 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Keeping tic80 stuff in $i
77 fi
78 fi
79 done
80 else
81 for i in $tic80_files ; do
82 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
83 if [ -n "${verbose}" ] ; then
84 echo Removing traces of \"tic80\" from $i...
85 fi
86 cp $i new
87 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
88 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
89 if [ -n "${verbose}" ] ; then
90 echo Caching $i in .Recover...
91 fi
92 mv $i .Recover
93 fi
94 mv new $i
95 fi
96 done
97 fi
98
99 if [ -n "${verbose}" ] ; then
100 echo Processing \"sky\"...
101 fi
102
103 sky_files="ChangeLog dis-asm.h"
104 if ( echo $* | grep keep\-sky > /dev/null ) ; then
105 for i in $sky_files ; do
106 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
107 if [ -n "${verbose}" ] ; then
108 echo Keeping sky stuff in $i
109 fi
110 fi
111 done
112 else
113 for i in $sky_files ; do
114 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
115 if [ -n "${verbose}" ] ; then
116 echo Removing traces of \"sky\" from $i...
117 fi
118 cp $i new
119 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
120 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
121 if [ -n "${verbose}" ] ; then
122 echo Caching $i in .Recover...
123 fi
124 mv $i .Recover
125 fi
126 mv new $i
127 fi
128 done
129 fi
130
131 if [ -n "${verbose}" ] ; then
132 echo Processing \"java\"...
133 fi
134
135 java_files="ChangeLog demangle.h"
136 if ( echo $* | grep keep\-java > /dev/null ) ; then
137 for i in $java_files ; do
138 if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Keeping java stuff in $i
141 fi
142 fi
143 done
144 else
145 for i in * ; do
146 if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
147 if [ -n "${verbose}" ] ; then
148 echo Removing traces of \"java\" from $i...
149 fi
150 cp $i new
151 sed '/start\-sanitize\-java/,/end-\sanitize\-java/d' < $i > new
152 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
153 if [ -n "${verbose}" ] ; then
154 echo Caching $i in .Recover...
155 fi
156 mv $i .Recover
157 fi
158 mv new $i
159 fi
160 done
161 fi
162
163 for i in * ; do
164 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
165 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
166 fi
167 done
168
169 # End of file.
This page took 0.03486 seconds and 4 git commands to generate.