Remove supposedly (but not really) GM-specific bits
[binutils-gdb.git] / ld / .Sanitize
1 # .Sanitize for devo/ld.
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 mpw_files="mpw-make.in mpw-config.in mpw-em.c ChangeLog.mpw"
19
20 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
21 keep_these_too="${mpw_files} ${keep_these_too}"
22 else
23 lose_these_too="${mpw_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 Makefile.in
36 NEWS
37 README
38 TODO
39 cdtest-foo.cc
40 cdtest-foo.h
41 cdtest-bar.cc
42 cdtest-main.cc
43 cdtest.exp
44 config
45 config.h
46 configure.bat
47 configure.in
48 dep-in.sed
49 emulparams
50 emultempl
51 genscripts.sh
52 h8-doc.texi
53 ld.1
54 gen-doc.texi
55 ld.h
56 ld.texinfo
57 ldctor.c
58 ldctor.h
59 ldemul.c
60 ldemul.h
61 ldexp.c
62 ldexp.h
63 ldfile.c
64 ldfile.h
65 ldgram.y
66 ldint.texinfo
67 ldlang.c
68 ldlang.h
69 ldlex.h
70 ldlex.l
71 ldmain.c
72 ldmain.h
73 ldmisc.c
74 ldmisc.h
75 ldver.c
76 ldver.h
77 ldwrite.c
78 ldwrite.h
79 lexsup.c
80 mri.c
81 mri.h
82 scripttempl
83 testsuite
84
85 Things-to-lose:
86
87 Do-last:
88
89 echo Looking for traces of \"mpw\"...
90
91 # Don't try to clean directories here, as the 'mv' command will fail.
92 # Also, grep fails on NFS mounted directories.
93 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
94 for i in * ; do
95 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
96 echo Keeping mpw traces in $i
97 fi
98 done
99 else
100 for i in * ; do
101 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
102 echo Removing traces of \"mpw\" out of $i...
103 cp $i new
104 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
105 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
106 echo Caching $i in .Recover...
107 mv $i .Recover
108 fi
109 mv new $i
110 fi
111 done
112 fi
113
114 # End of file.