]>
Commit | Line | Data |
---|---|---|
86e4d6e4 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 | Makefile.in | |
31 | config | |
32 | config.h | |
33 | configure | |
34 | configure.in | |
1b7ed4c9 | 35 | config.sub |
86e4d6e4 RP |
36 | ld.h |
37 | ld.texinfo | |
38 | ldemul.c | |
39 | ldemul.h | |
40 | ldexp.c | |
41 | ldexp.h | |
42 | ldfile.c | |
b648e172 SC |
43 | ldwarn.c |
44 | ldwarn.h | |
45 | ldindr.c | |
46 | ldindr.h | |
86e4d6e4 RP |
47 | ldfile.h |
48 | ldgld.c | |
30104b16 | 49 | ldgld.sc |
9fe37813 SC |
50 | ldgldi386v.sc |
51 | ldgldi386vUr.sc | |
52 | ldgldi386vr.sc | |
53 | ldgldm68kv.sc | |
54 | ldgldm68kvUr.sc | |
55 | ldgldm68kvr.sc | |
56 | ldgldm88kbcs.sc | |
57 | ldgldi386v.c | |
58 | ldgldm68kv.c | |
86e4d6e4 | 59 | ldgld68k.c |
30104b16 SC |
60 | ldgld68k.sc |
61 | ldgld68kUr.sc | |
62 | ldgld68kr.sc | |
86e4d6e4 | 63 | ldgld960.c |
30104b16 SC |
64 | ldgld960.sc |
65 | ldgldUr.sc | |
1e332873 SC |
66 | ldm88k.c |
67 | ldm88k.sc | |
68 | ldm88kUr.sc | |
69 | ldm88kr.sc | |
a4c407e5 | 70 | ldglda29k.c |
30104b16 SC |
71 | ldglda29k.sc |
72 | ldglda29kUr.sc | |
73 | ldglda29kr.sc | |
74 | ldgldr.sc | |
86e4d6e4 RP |
75 | ldgram.y |
76 | ldlang.c | |
77 | ldlang.h | |
78 | ldlex.h | |
79 | ldlex.l | |
80 | ldlnk960.c | |
30104b16 SC |
81 | ldlnk960.sc |
82 | ldlnk960r.sc | |
86e4d6e4 RP |
83 | ldmain.c |
84 | ldmain.h | |
85 | ldmisc.c | |
86 | ldmisc.h | |
87 | ldsym.c | |
88 | ldsym.h | |
89 | ldvanilla.c | |
90 | ldver.c | |
91 | ldver.h | |
86e4d6e4 RP |
92 | ldwarn.h |
93 | ldwrite.c | |
94 | ldwrite.h | |
95 | mkscript.c | |
96 | ||
97 | Do-last: | |
98 | ||
99 | echo Done in `pwd`. | |
100 | ||
101 | # | |
102 | # | |
103 | # $Log$ | |
9fe37813 SC |
104 | # Revision 1.9 1991/09/19 21:04:07 steve |
105 | # Modifications from James Tsillas for 386 and 68k machines | |
106 | # | |
107 | # Revision 1.8 1991/09/04 04:21:09 rich | |
7c589d25 RP |
108 | # Don't keep ldgram.h. Isn't even checked in. |
109 | # | |
110 | # Revision 1.7 1991/09/03 21:14:13 steve | |
1e332873 SC |
111 | # *** empty log message *** |
112 | # | |
113 | # Revision 1.6 1991/09/03 21:04:00 steve | |
30104b16 SC |
114 | # *** empty log message *** |
115 | # | |
116 | # Revision 1.5 1991/08/27 00:21:34 steve | |
1b7ed4c9 SC |
117 | # Added config.sub |
118 | # | |
119 | # Revision 1.4 1991/08/06 21:28:21 steve | |
1af27af8 SC |
120 | # Patches to fix bugs reported by roland McGrath |
121 | # | |
122 | # Revision 1.3 1991/08/01 23:59:06 steve | |
b648e172 SC |
123 | # *** empty log message *** |
124 | # | |
125 | # Revision 1.2 1991/07/16 00:31:15 steve | |
a4c407e5 SC |
126 | # *** empty log message *** |
127 | # | |
128 | # Revision 1.1 1991/05/23 21:45:12 rich | |
86e4d6e4 RP |
129 | # Initial revision |
130 | # | |
131 | # | |
132 | # | |
133 | ||
134 | # End of file. |