]>
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 | ||
070ac727 DE |
18 | arc_files="arcelf.sh" |
19 | ||
20 | if ( echo $* | grep keep\-arc > /dev/null ) ; then | |
21 | keep_these_too="${arc_files} ${keep_these_too}" | |
22 | else | |
23 | lose_these_too="${arc_files} ${lose_these_too}" | |
24 | fi | |
25 | ||
fb14975b MT |
26 | rce_files="rce.sh" |
27 | ||
28 | if ( echo $* | grep keep\-rce > /dev/null ) ; then | |
29 | keep_these_too="${rce_files} ${keep_these_too}" | |
30 | else | |
31 | lose_these_too="${rce_files} ${lose_these_too}" | |
32 | fi | |
8ddef552 DM |
33 | |
34 | # All files listed between the "Things-to-keep:" line and the | |
35 | # "Do-last:" line will be kept. All other files will be removed. | |
36 | # Directories listed in this section will have their own Sanitize | |
37 | # called. Directories not listed will be removed in their entirety | |
38 | # with rm -rf. | |
39 | ||
40 | Things-to-keep: | |
41 | ||
42 | README | |
43 | a29k.sh | |
42f9673d | 44 | alpha.sh |
ff15324f KR |
45 | armaoutb.sh |
46 | armaoutl.sh | |
28d0c3ce | 47 | armpe.sh |
78158b1c | 48 | coff_sparc.sh |
8ddef552 | 49 | ebmon29k.sh |
7ff42880 | 50 | elf32_sparc.sh |
1eadd162 ILT |
51 | elf32bmip.sh |
52 | elf32lmip.sh | |
7e11b1db | 53 | elf32lppc.sh |
c361ce46 | 54 | elf32ppc.sh |
751b7dcc JSC |
55 | elf32vr4300.sh |
56 | elf32vr4300el.sh | |
3f38a017 | 57 | elf64_sparc.sh |
03451d7f | 58 | elf_i386.sh |
8ddef552 | 59 | gld960.sh |
c610b46c | 60 | gld960coff.sh |
8ddef552 DM |
61 | go32.sh |
62 | h8300.sh | |
8f207409 | 63 | h8300h.sh |
8ddef552 | 64 | h8500.sh |
5fe60d73 SC |
65 | h8500b.sh |
66 | h8500c.sh | |
5fe60d73 | 67 | h8500m.sh |
3f38a017 | 68 | h8500s.sh |
8ddef552 DM |
69 | hp300bsd.sh |
70 | hp3hpux.sh | |
6cc2ced1 | 71 | hppaelf.sh |
8ddef552 DM |
72 | i386aout.sh |
73 | i386bsd.sh | |
74 | i386coff.sh | |
6c86b9ff | 75 | i386go32.sh |
7ff42880 | 76 | i386linux.sh |
bd7b78f7 | 77 | i386lynx.sh |
46cc3ed1 | 78 | i386mach.sh |
a2fb6995 KR |
79 | i386moss.sh |
80 | i386msdos.sh | |
32286e08 | 81 | i386nbsd.sh |
9ff30f20 | 82 | i386nw.sh |
3f38a017 | 83 | i386pe.sh |
8ddef552 | 84 | lnk960.sh |
0573a3b1 | 85 | m68kaout.sh |
8ddef552 | 86 | m68kcoff.sh |
575a4d91 | 87 | m68kelf.sh |
bd7b78f7 | 88 | m68klynx.sh |
e574ddd4 | 89 | m68knbsd.sh |
8ddef552 DM |
90 | m88kbcs.sh |
91 | mipsbig.sh | |
92 | mipsbsd.sh | |
93 | mipsidt.sh | |
94 | mipsidtl.sh | |
95 | mipslit.sh | |
96 | news.sh | |
32286e08 | 97 | ns32knbsd.sh |
8e0e09f6 | 98 | pc532machaout.sh |
9ff30f20 | 99 | ppcnw.sh |
8e0e09f6 | 100 | riscix.sh |
8ddef552 DM |
101 | sa29200.sh |
102 | sh.sh | |
6ae98644 | 103 | shl.sh |
278d569a | 104 | sparclynx.sh |
32286e08 | 105 | sparcnbsd.sh |
8ddef552 DM |
106 | st2000.sh |
107 | sun3.sh | |
108 | sun4.sh | |
109 | vanilla.sh | |
110 | vax.sh | |
de9425a8 | 111 | vsta.sh |
506f4ede | 112 | w65.sh |
66a61efd SC |
113 | z8001.sh |
114 | z8002.sh | |
8ddef552 DM |
115 | |
116 | Things-to-lose: | |
117 | ||
118 | # The lines between the "Do-last:" line and the end of the file | |
119 | # are executed as a /bin/sh shell script after everything else is | |
120 | # done. | |
121 | ||
122 | Do-last: |