]> Git Repo - binutils.git/blob - include/.Sanitize
Get prototype of memchr right
[binutils.git] / include / .Sanitize
1 # Sanitize.in for devo.
2 # $Id$
3 #
4
5 # Each directory to survive it's way into a release will need a file
6 # like this one called "./.Sanitize".  All keyword lines must exist,
7 # and must exist in the order specified by this file.  Each directory
8 # in the tree will be processed, top down, in the following order.
9
10 # Hash started lines like this one are comments and will be deleted
11 # before anything else is done.  Blank lines will also be squashed
12 # out.
13
14 # The lines between the "Do-first:" line and the "Things-to-keep:"
15 # line are executed as a /bin/sh shell script before anything else is
16 # done in this 
17
18 Do-first:
19
20 echo Sanitizing `pwd`...
21
22 # All files listed between the "Things-to-keep:" line and the
23 # "Files-to-sed:" line will be kept.  All other files will be removed.
24 # Directories listed in this section will have their own Sanitize
25 # called.  Directories not listed will be removed in their entirety
26 # with rm -rf.
27
28 Things-to-keep:
29
30 COPYING
31 ChangeLog
32 a.out.encap.h
33 a.out.gnu.h
34 a.out.host.h
35 a.out.sun4.h
36 a29k-opcode.h
37 h8300-opcode.h
38 ansidecl.h
39 aout64.h
40 ar.h
41 arm-opcode.h
42 bcs88kcoff.h
43 bfd.h
44 bout.h
45 coff-a29k.h
46 coff-i386.h
47 coff-i960.h
48 coff-mips.h
49 coff-m68k.h
50 coff-m88k.h
51 coff-rs6000.h
52 convx-opcode.h
53 dwarf.h
54 elf-common.h
55 elf-external.h
56 elf-internal.h
57 gdbm.h
58 getopt.h
59 i386-opcode.h
60 i860-opcode.h
61 i960-opcode.h
62 ieee.h
63 m68k-opcode.h
64 internalcoff.h
65 m88k-opcode.h
66 mips-opcode.h
67 np1-opcode.h
68 ns32k-opcode.h
69 oasys.h
70 obstack.h
71 pn-opcode.h
72 pyr-opcode.h
73 ranlib.h
74 reloc.h
75 sparc-opcode.h
76 stab.def
77 stab.gnu.h
78 tahoe-opcode.h
79 vax-opcode.h
80 wait.h
81
82 Do-last:
83
84 v9dirty="sparc-opcode.h aout64.h"
85
86 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
87         echo Keeping v9 in ${v9dirty}
88 else
89         for i in ${v9dirty} ; do
90                 echo Sanitizing v9 in $i
91                 rm -f new
92                 grep -v v9 $i > new
93                 if [ -n "${safe}" ] ; then
94                         mv $i .Recover
95                 else
96                         rm $i
97                 fi
98                 mv new $i
99         done
100 fi
101
102 echo Done in `pwd`.
103
104 #
105 #
106 # $Log$
107 # Revision 1.20  1991/10/25 10:21:10  gnu
108 # Rename coff-related files.
109 #
110 # Revision 1.19  1991/10/25  07:59:50  gnu
111 # rs6000
112 #
113 # Revision 1.18  1991/10/24  18:12:14  fnf
114 # Add "dwarf.h".
115 #
116 # Revision 1.17  1991/10/16  01:08:08  gnu
117 # Remove include files to bfd/hosts.
118 #
119 # Revision 1.16  1991/10/05  06:18:24  gnu
120 # a.out.vax.h gone.
121 #
122 # Revision 1.15  1991/10/03  22:24:27  gnu
123 # Add elf-*.h files.
124 #
125 # Revision 1.14  1991/09/26  22:46:53  steve
126 # Newly created
127 #
128 # Revision 1.13  1991/09/13  05:17:53  gnu
129 # Removes sparc-opcode.h rather than the file it is sanitizing, if not testing!
130 # (fixed...)
131 #
132 # Revision 1.12  1991/09/04  02:51:18  rich
133 # Adding "recover"'ability.
134 #
135 # Revision 1.11  1991/09/02  21:21:47  rich
136 # Recover the editted files.
137 #
138 # Revision 1.10  1991/08/29  00:34:45  gnu
139 # Paperwork handled for AMD Coff.
140 #
141 # Revision 1.9  1991/08/22  08:00:35  gnu
142 # Add ChangeLog for Include.
143 #
144 # Revision 1.8  1991/07/31  17:36:04  gnu
145 # Remove amdcoff.h by default because its copyright is not assigned to FSF.
146 # "Sanitize -keep-29k" will keep it.
147 #
148 # Revision 1.7  1991/07/31  03:11:46  gnu
149 # Remove symseg.h, the ancient GDB symbol-segments (gdb-specific debug
150 # information) definition.
151 #
152 # Revision 1.6  1991/07/24  01:07:25  gnu
153 # Add COPYING file.
154 #
155 # Revision 1.5  1991/07/24  00:47:13  gnu
156 # Blow away v9 stuff in aout64.h too.
157 #
158 # Revision 1.4  1991/07/15  23:34:14  steve
159 # *** empty log message ***
160 #
161 # Revision 1.3  1991/06/14  22:14:07  steve
162 # *** empty log message ***
163 #
164 # Revision 1.2  1991/05/31  11:26:52  gnu
165 # Add i386coff.h.  Print msg when sanitizing sparc-opcode.h.
166 #
167 # Revision 1.1  1991/05/23  17:00:59  rich
168 # Initial revision
169 #
170 #
171 #
172
173 # End of file.
This page took 0.032754 seconds and 4 git commands to generate.