dd6cbb005342c9b7b7aaa2ac787cdb5965158a15
[deliverable/binutils-gdb.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 amdcoff.h
39 ansidecl.h
40 aout64.h
41 ar.h
42 arm-opcode.h
43 bcs88kcoff.h
44 bfd.h
45 bout.h
46 convx-opcode.h
47 dwarf.h
48 ecoff.h
49 elf-common.h
50 elf-external.h
51 elf-internal.h
52 gdbm.h
53 getopt.h
54 i386-opcode.h
55 i386coff.h
56 i860-opcode.h
57 i960-opcode.h
58 ieee.h
59 intel-coff.h
60 m68k-opcode.h
61 m68kcoff.h
62 m88k-bcs.h
63 internalcoff.h
64 m88k-opcode.h
65 mips-opcode.h
66 np1-opcode.h
67 ns32k-opcode.h
68 oasys.h
69 obstack.h
70 pn-opcode.h
71 pyr-opcode.h
72 ranlib.h
73 reloc.h
74 sparc-opcode.h
75 stab.def
76 stab.gnu.h
77 tahoe-opcode.h
78 vax-opcode.h
79 wait.h
80
81 Do-last:
82
83 v9dirty="sparc-opcode.h aout64.h"
84
85 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
86 echo Keeping v9 in ${v9dirty}
87 else
88 for i in ${v9dirty} ; do
89 echo Sanitizing v9 in $i
90 rm -f new
91 grep -v v9 $i > new
92 if [ -n "${safe}" ] ; then
93 mv $i .Recover
94 else
95 rm $i
96 fi
97 mv new $i
98 done
99 fi
100
101 echo Done in `pwd`.
102
103 #
104 #
105 # $Log$
106 # Revision 1.18 1991/10/24 18:12:14 fnf
107 # Add "dwarf.h".
108 #
109 # Revision 1.17 1991/10/16 01:08:08 gnu
110 # Remove include files to bfd/hosts.
111 #
112 # Revision 1.16 1991/10/05 06:18:24 gnu
113 # a.out.vax.h gone.
114 #
115 # Revision 1.15 1991/10/03 22:24:27 gnu
116 # Add elf-*.h files.
117 #
118 # Revision 1.14 1991/09/26 22:46:53 steve
119 # Newly created
120 #
121 # Revision 1.13 1991/09/13 05:17:53 gnu
122 # Removes sparc-opcode.h rather than the file it is sanitizing, if not testing!
123 # (fixed...)
124 #
125 # Revision 1.12 1991/09/04 02:51:18 rich
126 # Adding "recover"'ability.
127 #
128 # Revision 1.11 1991/09/02 21:21:47 rich
129 # Recover the editted files.
130 #
131 # Revision 1.10 1991/08/29 00:34:45 gnu
132 # Paperwork handled for AMD Coff.
133 #
134 # Revision 1.9 1991/08/22 08:00:35 gnu
135 # Add ChangeLog for Include.
136 #
137 # Revision 1.8 1991/07/31 17:36:04 gnu
138 # Remove amdcoff.h by default because its copyright is not assigned to FSF.
139 # "Sanitize -keep-29k" will keep it.
140 #
141 # Revision 1.7 1991/07/31 03:11:46 gnu
142 # Remove symseg.h, the ancient GDB symbol-segments (gdb-specific debug
143 # information) definition.
144 #
145 # Revision 1.6 1991/07/24 01:07:25 gnu
146 # Add COPYING file.
147 #
148 # Revision 1.5 1991/07/24 00:47:13 gnu
149 # Blow away v9 stuff in aout64.h too.
150 #
151 # Revision 1.4 1991/07/15 23:34:14 steve
152 # *** empty log message ***
153 #
154 # Revision 1.3 1991/06/14 22:14:07 steve
155 # *** empty log message ***
156 #
157 # Revision 1.2 1991/05/31 11:26:52 gnu
158 # Add i386coff.h. Print msg when sanitizing sparc-opcode.h.
159 #
160 # Revision 1.1 1991/05/23 17:00:59 rich
161 # Initial revision
162 #
163 #
164 #
165
166 # End of file.
This page took 0.033803 seconds and 4 git commands to generate.