]>
Commit | Line | Data |
---|---|---|
d4d5412d RP |
1 | # Sanitize.in for devo. |
2 | # $Id$ | |
3 | # | |
4 | ||
5 | # Each directory to survive it's way into a release will need a file | |
6 | # like this one called "./.Sanitize". All keyword lines must exist, | |
7 | # and must exist in the order specified by this file. Each directory | |
8 | # in the tree will be processed, top down, in the following order. | |
9 | ||
10 | # Hash started lines like this one are comments and will be deleted | |
11 | # before anything else is done. Blank lines will also be squashed | |
12 | # out. | |
13 | ||
14 | # The lines between the "Do-first:" line and the "Things-to-keep:" | |
15 | # line are executed as a /bin/sh shell script before anything else is | |
16 | # done in this | |
17 | ||
18 | Do-first: | |
19 | ||
20 | echo Sanitizing `pwd`... | |
21 | ||
22 | # All files listed between the "Things-to-keep:" line and the | |
23 | # "Files-to-sed:" line will be kept. All other files will be removed. | |
24 | # Directories listed in this section will have their own Sanitize | |
25 | # called. Directories not listed will be removed in their entirety | |
26 | # with rm -rf. | |
27 | ||
28 | Things-to-keep: | |
29 | ||
30 | .gdbinit | |
31 | COPYING | |
32 | ChangeLog | |
33 | Makefile.in | |
34 | NOTES | |
35 | NOTES.config | |
36 | README | |
920babce | 37 | README-quirks |
d4d5412d RP |
38 | README-vms-dbg |
39 | README.coff | |
542e1629 RP |
40 | obstack.h |
41 | obstack.c | |
42 | bit_fix.h | |
43 | strerror.c | |
d4d5412d | 44 | README.rich |
e530f5c4 | 45 | a.out.gnu.h |
d4d5412d RP |
46 | app.c |
47 | as.c | |
48 | as.h | |
49 | atof-generic.c | |
d4d5412d RP |
50 | bignum-copy.c |
51 | bignum.h | |
52 | cond.c | |
53 | config | |
28bf2d31 | 54 | configdos.bat |
d4d5412d RP |
55 | configure.in |
56 | debug.c | |
a262a1b2 | 57 | doc |
d4d5412d RP |
58 | expr.c |
59 | expr.h | |
60 | flonum-const.c | |
61 | flonum-copy.c | |
62 | flonum-mult.c | |
63 | flonum.h | |
64 | frags.c | |
65 | frags.h | |
920babce | 66 | gas-format.el |
d4d5412d RP |
67 | hash.c |
68 | hash.h | |
69 | hex-value.c | |
70 | input-file.c | |
71 | input-file.h | |
72 | input-scrub.c | |
920babce | 73 | link.cmd |
d7d28d22 RP |
74 | listing.c |
75 | listing.h | |
d4d5412d | 76 | make-gas.com |
28bf2d31 | 77 | makefile.dos |
d4d5412d RP |
78 | messages.c |
79 | obj.h | |
80 | objdump.c | |
920babce | 81 | obsolete |
d4d5412d RP |
82 | output-file.c |
83 | output-file.h | |
84 | read.c | |
85 | read.h | |
86 | strstr.c | |
87 | struc-symbol.h | |
88 | subsegs.c | |
89 | subsegs.h | |
90 | symbols.c | |
91 | symbols.h | |
92 | tc.h | |
920babce RP |
93 | testscripts |
94 | ver960.c | |
d4d5412d RP |
95 | version.c |
96 | write.c | |
97 | write.h | |
98 | xmalloc.c | |
99 | xrealloc.c | |
100 | ||
101 | Do-last: | |
102 | ||
103 | echo Done in `pwd`. | |
104 | ||
105 | # | |
106 | # | |
107 | # $Log$ | |
542e1629 RP |
108 | # Revision 1.9 1992/02/17 15:52:52 rich |
109 | # fighting bitrot in a major way | |
110 | # | |
111 | # Revision 1.8 1992/02/14 00:21:34 pesch | |
a262a1b2 RP |
112 | # It's OK to keep the doc subdirectory, really. |
113 | # | |
114 | # Revision 1.7 1992/02/13 10:13:19 rich | |
920babce RP |
115 | # clean up Sanitize for gas |
116 | # | |
117 | # Revision 1.6 1992/01/17 20:54:32 rich | |
d7d28d22 RP |
118 | # keep listing* |
119 | # | |
120 | # Revision 1.5 1991/12/12 03:28:12 sac | |
28bf2d31 SC |
121 | # Added makefile.dos configure.dos |
122 | # | |
123 | # Revision 1.4 1991/12/09 11:58:44 tiemann | |
e530f5c4 MT |
124 | # Keep a.out.gnu.h. |
125 | # | |
126 | # Revision 1.3 1991/10/10 11:58:04 rich | |
1a315703 RP |
127 | # updating |
128 | # | |
129 | # Revision 1.2 1991/09/02 01:05:04 rich | |
abf2ca6c RP |
130 | # Correcting some things. |
131 | # | |
132 | # Revision 1.1 1991/05/23 17:18:12 rich | |
d4d5412d RP |
133 | # Initial revision |
134 | # | |
135 | # | |
136 | # | |
137 | ||
138 | # End of file. |