* sim-base.h (sim_state_base): Move `magic' to end of struct.
[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 remote-sim.h
57 wait.h
58
59 Things-to-lose:
60
61
62 Do-last:
63
64 tic80_files="ChangeLog dis-asm.h"
65 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
66 for i in $tic80_files ; do
67 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
68 if [ -n "${verbose}" ] ; then
69 echo Keeping tic80 stuff in $i
70 fi
71 fi
72 done
73 else
74 for i in $tic80_files ; do
75 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
76 if [ -n "${verbose}" ] ; then
77 echo Removing traces of \"tic80\" from $i...
78 fi
79 cp $i new
80 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
81 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
82 if [ -n "${verbose}" ] ; then
83 echo Caching $i in .Recover...
84 fi
85 mv $i .Recover
86 fi
87 mv new $i
88 fi
89 done
90 fi
91
92 d30v_files="ChangeLog dis-asm.h"
93 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
94 for i in $d30v_files ; do
95 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
96 if [ -n "${verbose}" ] ; then
97 echo Keeping d30v stuff in $i
98 fi
99 fi
100 done
101 else
102 for i in $d30v_files ; do
103 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
104 if [ -n "${verbose}" ] ; then
105 echo Removing traces of \"d30v\" from $i...
106 fi
107 cp $i new
108 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
109 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
110 if [ -n "${verbose}" ] ; then
111 echo Caching $i in .Recover...
112 fi
113 mv $i .Recover
114 fi
115 mv new $i
116 fi
117 done
118 fi
119
120 for i in * ; do
121 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
122 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
123 fi
124 done
125
126 # End of file.
This page took 0.034455 seconds and 4 git commands to generate.