]>
Commit | Line | Data |
---|---|---|
278d569a | 1 | # .Sanitize for devo/ld/emulparams |
8ddef552 DM |
2 | |
3 | # Each directory to survive its way into a release will need a file | |
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 | |
14 | # done in this directory. | |
15 | ||
16 | Do-first: | |
17 | ||
fb14975b MT |
18 | rce_files="rce.sh" |
19 | ||
20 | if ( echo $* | grep keep\-rce > /dev/null ) ; then | |
21 | keep_these_too="${rce_files} ${keep_these_too}" | |
22 | else | |
23 | lose_these_too="${rce_files} ${lose_these_too}" | |
24 | fi | |
8ddef552 DM |
25 | |
26 | # All files listed between the "Things-to-keep:" line and the | |
27 | # "Do-last:" line will be kept. All other files will be removed. | |
28 | # Directories listed in this section will have their own Sanitize | |
29 | # called. Directories not listed will be removed in their entirety | |
30 | # with rm -rf. | |
31 | ||
32 | Things-to-keep: | |
33 | ||
34 | README | |
35 | a29k.sh | |
42f9673d | 36 | alpha.sh |
78158b1c | 37 | coff_sparc.sh |
8ddef552 | 38 | ebmon29k.sh |
7ff42880 KR |
39 | elf32_sparc.sh |
40 | elf64_sparc.sh | |
1eadd162 ILT |
41 | elf32bmip.sh |
42 | elf32lmip.sh | |
c361ce46 | 43 | elf32ppc.sh |
03451d7f | 44 | elf_i386.sh |
8ddef552 | 45 | gld960.sh |
c610b46c | 46 | gld960coff.sh |
8ddef552 DM |
47 | go32.sh |
48 | h8300.sh | |
8f207409 | 49 | h8300h.sh |
8ddef552 | 50 | h8500.sh |
5fe60d73 SC |
51 | h8500b.sh |
52 | h8500c.sh | |
53 | h8500s.sh | |
54 | h8500m.sh | |
8ddef552 DM |
55 | hp300bsd.sh |
56 | hp3hpux.sh | |
6cc2ced1 | 57 | hppaelf.sh |
8ddef552 DM |
58 | i386aout.sh |
59 | i386bsd.sh | |
60 | i386coff.sh | |
6c86b9ff | 61 | i386go32.sh |
7ff42880 | 62 | i386linux.sh |
bd7b78f7 | 63 | i386lynx.sh |
46cc3ed1 | 64 | i386mach.sh |
32286e08 | 65 | i386nbsd.sh |
9ff30f20 | 66 | i386nw.sh |
8ddef552 | 67 | lnk960.sh |
0573a3b1 | 68 | m68kaout.sh |
8ddef552 | 69 | m68kcoff.sh |
bd7b78f7 | 70 | m68klynx.sh |
e574ddd4 | 71 | m68knbsd.sh |
8ddef552 DM |
72 | m88kbcs.sh |
73 | mipsbig.sh | |
74 | mipsbsd.sh | |
75 | mipsidt.sh | |
76 | mipsidtl.sh | |
77 | mipslit.sh | |
78 | news.sh | |
32286e08 | 79 | ns32knbsd.sh |
8e0e09f6 | 80 | pc532machaout.sh |
9ff30f20 | 81 | ppcnw.sh |
8e0e09f6 | 82 | riscix.sh |
8ddef552 DM |
83 | sa29200.sh |
84 | sh.sh | |
278d569a | 85 | sparclynx.sh |
32286e08 | 86 | sparcnbsd.sh |
8ddef552 DM |
87 | st2000.sh |
88 | sun3.sh | |
89 | sun4.sh | |
90 | vanilla.sh | |
91 | vax.sh | |
de9425a8 | 92 | vsta.sh |
8ddef552 DM |
93 | z8ksim.sh |
94 | ||
95 | Things-to-lose: | |
96 | ||
97 | # The lines between the "Do-last:" line and the end of the file | |
98 | # are executed as a /bin/sh shell script after everything else is | |
99 | # done. | |
100 | ||
101 | Do-last: |