Deleted RCS crap, since it frequently seems to wind up being the only
[deliverable/binutils-gdb.git] / gas / .Sanitize
1 # Sanitize.in for devo.
2 #
3
4 # Each directory to survive it's way into a release will need a file
5 # like this one called "./.Sanitize". All keyword lines must exist,
6 # and must exist in the order specified by this file. Each directory
7 # in the tree will be processed, top down, in the following order.
8
9 # Hash started lines like this one are comments and will be deleted
10 # before anything else is done. Blank lines will also be squashed
11 # out.
12
13 # The lines between the "Do-first:" line and the "Things-to-keep:"
14 # line are executed as a /bin/sh shell script before anything else is
15 # done in this
16
17 Do-first:
18
19
20 # All files listed between the "Things-to-keep:" line and the
21 # "Files-to-sed:" line will be kept. All other files will be removed.
22 # Directories listed in this section will have their own Sanitize
23 # called. Directories not listed will be removed in their entirety
24 # with rm -rf.
25
26 Things-to-keep:
27
28 .gdbinit
29 CONTRIBUTORS
30 COPYING
31 ChangeLog
32 ChangeLog.v9
33 Makefile.in
34 NEWS
35 NOTES
36 NOTES.config
37 README
38 README-quirks
39 README-vms
40 README.coff
41 README.rich
42 app.c
43 as.c
44 as.h
45 atof-generic.c
46 bignum-copy.c
47 bignum.h
48 bit_fix.h
49 cond.c
50 config
51 config-gas.com
52 configure.bat
53 configure.in
54 debug.c
55 doc
56 ecoff.c
57 ecoff.h
58 expr.c
59 expr.h
60 flonum-copy.c
61 flonum-konst.c
62 flonum-mult.c
63 flonum.h
64 frags.c
65 frags.h
66 hash.c
67 hash.h
68 hex-value.c
69 input-file.c
70 input-file.h
71 input-scrub.c
72 link.cmd
73 listing.c
74 listing.h
75 make-gas.com
76 messages.c
77 obj.h
78 output-file.c
79 output-file.h
80 read.c
81 read.h
82 stabs.c
83 struc-symbol.h
84 subsegs.c
85 subsegs.h
86 symbols.c
87 symbols.h
88 tc.h
89 testsuite
90 write.c
91 write.h
92 xmalloc.c
93
94 Things-to-lose:
95
96 Do-last:
97
98 if ( echo $* | grep keep-v9 > /dev/null ) ; then
99 if [ -n "${verbose}" ] ; then
100 echo Keeping `pwd`/ChangeLog.v9.
101 echo Keeping v9 code in `pwd`/configure.in.
102 fi
103 else
104 if [ -n "${verbose}" ] ; then
105 echo Removing `pwd`/ChangeLog.v9
106 fi
107 if [ -n "${safe}" ] ; then
108 mv ChangeLog.v9 .Recover
109 else
110 rm ChangeLog.v9
111 fi
112 if [ -n "${verbose}" ] ; then
113 echo Cleaning v9 code from `pwd`/configure.in.
114 fi
115 grep -v v9 < configure.in > new
116 if [ -n "${safe}" ]; then
117 mv configure.in .Recover
118 fi
119 mv -f new configure.in
120 fi
121
122
123 #
124 # End of file.
This page took 0.030922 seconds and 4 git commands to generate.