]>
Commit | Line | Data |
---|---|---|
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 | ChangeLog | |
31 | Makefile.in | |
32 | TODO | |
33 | alloca.c | |
34 | ar.c | |
35 | ar.1 | |
36 | nm.1 | |
37 | objdump.1 | |
38 | ranlib.1 | |
39 | size.1 | |
40 | strip.1 | |
41 | is-ranlib.c | |
42 | not-ranlib.c | |
43 | maybe-ranlib.c | |
44 | is-strip.c | |
45 | not-strip.c | |
46 | maybe-strip.c | |
47 | binutils.texi | |
48 | bucomm.c | |
49 | configure.in | |
50 | copy.c | |
51 | cplus-dem.c | |
52 | filemode.c | |
53 | gmalloc.c | |
54 | am29k-pinsn.c | |
55 | i960-pinsn.c | |
56 | m68k-pinsn.c | |
57 | nm.c | |
58 | objdump.c | |
59 | ranlib.sh | |
60 | README | |
61 | size.c | |
62 | sparc-pinsn.c | |
63 | version.c | |
64 | ||
65 | Do-last: | |
66 | ||
67 | echo Done in `pwd`. | |
68 | ||
69 | # | |
70 | # | |
71 | # $Log$ | |
72 | # Revision 1.11 1991/11/18 08:04:14 bothner | |
73 | # * Makefile.in: Bump to version 1.92. | |
74 | # * version.c, Makefile.in: Get version string from Makefile. | |
75 | # * copy.c, is-strip.c, not-strip.c, maybe-strip.c, Makefile.in: | |
76 | # Make the same change that we earlier did for ar/ranlib: | |
77 | # Generate two different binaries for strip and copy and use | |
78 | # a global variable with different values to distinguish | |
79 | # ostrip from copy. (-1 means to use argv[0] to decide, | |
80 | # so you can get the old behavior, but it is no longer the default). | |
81 | # * copy.c (copy_file): Set EXEC_P of output bfd if input is so. | |
82 | # * copy.c (main): If is_strip==-1, compare last 5 chars | |
83 | # of argv[0], not the whole path. | |
84 | # * copy.c (main): Return 0, not 1. | |
85 | # * copy.c (setup_sections): Fix due to change in bfd_make_section | |
86 | # now failing if asked for a duplicate section. | |
87 | # * strip.c, ostrip.c: Removed obsolete files. | |
88 | # * ar.c, not-ranlib.c, maybe-ranlib.c: | |
89 | # Change encoding of is_ranlib variable to be consistent | |
90 | # with is_strip for strip.copy (i.e -1 to means use argv[0]). | |
91 | # | |
92 | # Revision 1.10 1991/11/15 23:34:33 pesch | |
93 | # .Sanitize: reflect someone's apocopation of binutils.texi[nfo] name | |
94 | # Makefile.in: improve texi2roff workarounds | |
95 | # | |
96 | # Revision 1.9 1991/11/06 09:06:02 sac | |
97 | # Added nm.1, objdump.1, ranlib.1, size.1 and strip.1 | |
98 | # | |
99 | # Revision 1.8 1991/11/05 20:53:19 sac | |
100 | # Added README to .Sanitize | |
101 | # Made Makefile.in install using ddestdir | |
102 | # | |
103 | # Revision 1.7 1991/10/10 11:59:09 rich | |
104 | # updating | |
105 | # | |
106 | # Revision 1.6 1991/10/08 01:50:59 gnu | |
107 | # Remove configure and config.sub from the expected list. | |
108 | # | |
109 | # Revision 1.5 1991/10/08 01:48:04 gnu | |
110 | # Add binutils.texinfo, and change *-ranlib.o to *-ranlib.c. | |
111 | # | |
112 | # Revision 1.4 1991/10/07 23:14:30 bothner | |
113 | # * ar.c, Makefile.in, new files {is,not,maybe}-ranlib.c: | |
114 | # Make two different binaries for ar and ranlib, instead of | |
115 | # distinguishing them at run time using argv[0]. | |
116 | # (Old behavior is still available if you "make ar_with_ranlib", | |
117 | # but it is not the default.) | |
118 | # * ranlib.sh (new): An alternative one-line | |
119 | # shell implementation of ranlib. | |
120 | # | |
121 | # Revision 1.3 1991/09/01 03:47:07 steve | |
122 | # Added config.sub | |
123 | # | |
124 | # Revision 1.2 1991/07/15 23:38:04 steve | |
125 | # *** empty log message *** | |
126 | # | |
127 | # Revision 1.1 1991/05/23 21:49:14 rich | |
128 | # Initial revision | |
129 | # | |
130 | # | |
131 | # | |
132 | ||
133 | # End of file. |