Tue Mar 24 18:32:47 1998 H.J. Lu <hjl@gnu.org>
[deliverable/binutils-gdb.git] / include / coff / .Sanitize
1 # Sanitize.in for include/coff.
2
3 # Each directory to survive it's 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
15
16 Do-first:
17
18 tic80_files="tic80.h"
19
20 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
21 keep_these_too="${tic80_files} ${keep_these_too}"
22 else
23 lose_these_too="${tic80_files} ${lose_these_too}"
24 fi
25
26 # All files listed between the "Things-to-keep:" line and the
27 # "Files-to-sed:" line will be kept. All other files will be removed.
28 # Directories listed in this section will have their own Sanitize
29 # called. Directories not listed will be removed in their entirety
30 # with rm -rf.
31
32 Things-to-keep:
33
34 ChangeLog
35 a29k.h
36 alpha.h
37 apollo.h
38 arm.h
39 aux-coff.h
40 ecoff.h
41 go32exe.h
42 h8300.h
43 h8500.h
44 i386.h
45 i860.h
46 i960.h
47 internal.h
48 m68k.h
49 m88k.h
50 mips.h
51 pe.h
52 powerpc.h
53 rs6000.h
54 sh.h
55 sparc.h
56 sym.h
57 symconst.h
58 tic30.h
59 w65.h
60 we32k.h
61 z8k.h
62
63 Things-to-lose:
64
65
66 Do-last:
67
68 tic80_files="ChangeLog internal.h"
69 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
70 for i in $tic80_files ; do
71 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
72 if [ -n "${verbose}" ] ; then
73 echo Keeping tic80 stuff in $i
74 fi
75 fi
76 done
77 else
78 for i in $tic80_files ; do
79 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
80 if [ -n "${verbose}" ] ; then
81 echo Removing traces of \"tic80\" from $i...
82 fi
83 cp $i new
84 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
85 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
86 if [ -n "${verbose}" ] ; then
87 echo Caching $i in .Recover...
88 fi
89 mv $i .Recover
90 fi
91 mv new $i
92 fi
93 done
94 fi
95
96 # End of file.
This page took 0.071671 seconds and 4 git commands to generate.