Add COPYING file.
[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 a.out.encap.h
32 a.out.gnu.h
33 a.out.host.h
34 a.out.sun4.h
35 a.out.vax.h
36 a29k-opcode.h
37 amdcoff.h
38 ansidecl.h
39 aout64.h
40 ar.h
41 arm-opcode.h
42 bcs88kcoff.h
43 bfd.h
44 bout.h
45 convx-opcode.h
46 ecoff.h
47 gdbm.h
48 getopt.h
49 i386-opcode.h
50 i386coff.h
51 i860-opcode.h
52 i960-opcode.h
53 ieee.h
54 intel-coff.h
55 m68k-opcode.h
56 m68kcoff.h
57 m88k-bcs.h
58 internalcoff.h
59 m88k-opcode.h
60 mips-opcode.h
61 np1-opcode.h
62 ns32k-opcode.h
63 oasys.h
64 obstack.h
65 pn-opcode.h
66 pyr-opcode.h
67 ranlib.h
68 reloc.h
69 sparc-opcode.h
70 stab.def
71 stab.gnu.h
72 symseg.h
73 sys
74 sysdep.h
75 tahoe-opcode.h
76 vax-opcode.h
77 wait.h
78
79 Do-last:
80
81 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
82 echo Keeping v9 in sparc-opcode.h.
83 else
84 echo Sanitizing v9 in sparc-opcode.h.
85 rm -f new
86 grep -v v9 sparc-opcode.h > new
87 rm sparc-opcode.h
88 mv new sparc-opcode.h
89 fi
90
91 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
92 echo Keeping v9 in aout64.h.
93 else
94 echo Sanitizing v9 in aout64.h.
95 rm -f new
96 grep -v v9 aout64.h > new
97 rm aout64.h
98 mv new aout64.h
99 fi
100
101 echo Done in `pwd`.
102
103 #
104 #
105 # $Log$
106 # Revision 1.6 1991/07/24 01:07:25 gnu
107 # Add COPYING file.
108 #
109 # Revision 1.5 1991/07/24 00:47:13 gnu
110 # Blow away v9 stuff in aout64.h too.
111 #
112 # Revision 1.4 1991/07/15 23:34:14 steve
113 # *** empty log message ***
114 #
115 # Revision 1.3 1991/06/14 22:14:07 steve
116 # *** empty log message ***
117 #
118 # Revision 1.2 1991/05/31 11:26:52 gnu
119 # Add i386coff.h. Print msg when sanitizing sparc-opcode.h.
120 #
121 # Revision 1.1 1991/05/23 17:00:59 rich
122 # Initial revision
123 #
124 #
125 #
126
127 # End of file.
This page took 0.033354 seconds and 5 git commands to generate.