]>
Commit | Line | Data |
---|---|---|
2323d13b | 1 | # .Sanitize for devo/include. |
0fd8d5d9 | 2 | |
2323d13b | 3 | # Each directory to survive its way into a release will need a file |
0fd8d5d9 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 | |
2323d13b | 14 | # done in this directory. |
0fd8d5d9 RP |
15 | |
16 | Do-first: | |
17 | ||
2323d13b SS |
18 | if ( echo $* | grep keep\-mpw > /dev/null ) ; then |
19 | keep_these_too="mpw" | |
20 | else | |
21 | lose_these_too="mpw" | |
22 | fi | |
23 | ||
36d4f4d8 JL |
24 | if ( echo $* | grep keep\-hpread > /dev/null ) ; then |
25 | keep_these_too="hpux-symtab.h ChangeLog.hpread" | |
26 | else | |
27 | lose_these_too="hpux-symtab.h ChangeLog.hpread" | |
28 | fi | |
29 | ||
0fd8d5d9 RP |
30 | # All files listed between the "Things-to-keep:" line and the |
31 | # "Files-to-sed:" line will be kept. All other files will be removed. | |
32 | # Directories listed in this section will have their own Sanitize | |
33 | # called. Directories not listed will be removed in their entirety | |
34 | # with rm -rf. | |
35 | ||
36 | Things-to-keep: | |
37 | ||
8e71e6e3 | 38 | COPYING |
49d6a0e6 | 39 | ChangeLog |
0fd8d5d9 | 40 | ansidecl.h |
11eab90c | 41 | aout |
9a0418eb | 42 | bfdlink.h |
0fd8d5d9 | 43 | bout.h |
11eab90c | 44 | coff |
c9725927 | 45 | demangle.h |
d7e1be46 | 46 | dis-asm.h |
11eab90c | 47 | elf |
8b1d1557 | 48 | floatformat.h |
201258d5 JW |
49 | fopen-bin.h |
50 | fopen-same.h | |
0fd8d5d9 RP |
51 | gdbm.h |
52 | getopt.h | |
0fd8d5d9 | 53 | ieee.h |
e51437f1 | 54 | libiberty.h |
f7da7289 | 55 | nlm |
0fd8d5d9 RP |
56 | oasys.h |
57 | obstack.h | |
02400c00 | 58 | os9k.h |
11eab90c | 59 | opcode |
0fd8d5d9 RP |
60 | wait.h |
61 | ||
87756e15 RP |
62 | Things-to-lose: |
63 | ||
775d4a40 | 64 | |
0fd8d5d9 RP |
65 | Do-last: |
66 | ||
0fd8d5d9 | 67 | # End of file. |