vms work, pseudo_set fixes
[deliverable/binutils-gdb.git] / gas / .Sanitize
CommitLineData
a6148eeb 1# .Sanitize for devo/gas.
d4d5412d 2
4f5d16c7 3# Each directory to survive its way into a release will need a file
d4d5412d
RP
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
a6148eeb 14# done in this directory.
d4d5412d
RP
15
16Do-first:
17
4f5d16c7 18if ( echo $* | grep keep\-mpw > /dev/null ) ; then
623d4854 19 keep_these_too="mpw-config.in mpw-make.in ChangeLog.mpw"
2a79b202 20else
623d4854 21 lose_these_too="mpw-config.in mpw-make.in ChangeLog.mpw"
2a79b202
SS
22fi
23
d4d5412d
RP
24# All files listed between the "Things-to-keep:" line and the
25# "Files-to-sed:" line will be kept. All other files will be removed.
26# Directories listed in this section will have their own Sanitize
27# called. Directories not listed will be removed in their entirety
28# with rm -rf.
29
30Things-to-keep:
31
32.gdbinit
eee109cd 33CONTRIBUTORS
d4d5412d
RP
34COPYING
35ChangeLog
36Makefile.in
eee109cd 37NEWS
d4d5412d
RP
38NOTES
39NOTES.config
40README
920babce 41README-quirks
eee109cd 42README-vms
d4d5412d
RP
43README.coff
44README.rich
6e71a03b
KR
45acconfig.h
46aclocal.m4
d4d5412d
RP
47app.c
48as.c
49as.h
50atof-generic.c
d4d5412d
RP
51bignum-copy.c
52bignum.h
eee109cd 53bit_fix.h
d4d5412d 54cond.c
6e71a03b 55conf.in
d4d5412d 56config
003acb2d 57config-gas.com
6e71a03b 58configure
c593cf41 59configure.bat
d4d5412d
RP
60configure.in
61debug.c
a262a1b2 62doc
9faec336
ILT
63ecoff.c
64ecoff.h
d4d5412d
RP
65expr.c
66expr.h
d4d5412d 67flonum-copy.c
eee109cd 68flonum-konst.c
d4d5412d
RP
69flonum-mult.c
70flonum.h
71frags.c
72frags.h
a5a4b5ac 73gasp.c
d4d5412d
RP
74hash.c
75hash.h
76hex-value.c
77input-file.c
78input-file.h
79input-scrub.c
920babce 80link.cmd
d7d28d22
RP
81listing.c
82listing.h
2d29d89d 83literal.c
d4d5412d
RP
84make-gas.com
85messages.c
86obj.h
d4d5412d
RP
87output-file.c
88output-file.h
89read.c
90read.h
29249b42 91stabs.c
d4d5412d
RP
92struc-symbol.h
93subsegs.c
94subsegs.h
95symbols.c
96symbols.h
97tc.h
f70a4714 98testsuite
be2fc7ec 99vmsconf.sh
d4d5412d
RP
100write.c
101write.h
102xmalloc.c
d4d5412d 103
87756e15
RP
104Things-to-lose:
105
d4d5412d
RP
106Do-last:
107
10db66ec
KR
108i960xl_files=ChangeLog
109if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
110 if [ -n "${verbose}" ] ; then
111 echo Keeping i960xl stuff in $i960xl_files.
112 fi
113else
114 if [ -n "${verbose}" ]; then
115 echo -n Cleaning i960xl in `pwd`:
116 fi
117 for f in $i960xl_files ; do
118 if [ -n "${verbose}" ] ; then
119 echo -n " " $f
120 fi
121 sed '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
122 if [ -n "${safe}" ] ; then
123 mv $f .Recover
124 fi
125 mv new $f
126 done
127fi
128
d4d5412d 129#
d4d5412d 130# End of file.
This page took 0.116235 seconds and 4 git commands to generate.