Thu May 21 13:14:25 1998 John Metzler <jmetzler@cygnus.com>
[deliverable/binutils-gdb.git] / gdb / config / .Sanitize
1 # .Sanitize for devo/gdb/config.
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
18 tic80_files="tic80"
19
20 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
21 keep_these_too="${tic80_files} ${keep_these_too}"
22 if [ -n "${verbose}" ] ; then
23 echo Keeping ${tic80_files}
24 fi
25 else
26 lose_these_too="${tic80_files} ${lose_these_too}"
27 if [ -n "${verbose}" ] ; then
28 echo Deleting ${tic80_files}
29 fi
30 fi
31
32 d30v_files="d30v"
33
34 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
35 keep_these_too="${d30v_files} ${keep_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Keeping ${d30v_files}
38 fi
39 else
40 lose_these_too="${d30v_files} ${lose_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Deleting ${d30v_files}
43 fi
44 fi
45
46 # All files listed between the "Things-to-keep:" line and the
47 # "Files-to-sed:" line will be kept. All other files will be removed.
48 # Directories listed in this section will have their own Sanitize
49 # called. Directories not listed will be removed in their entirety
50 # with rm -rf.
51
52 Things-to-keep:
53
54 a29k
55 alpha
56 arc
57 arm
58 convex
59 d10v
60 gould
61 h8300
62 h8500
63 i386
64 i960
65 m32r
66 m68k
67 m88k
68 mips
69 mn10200
70 mn10300
71 nm-empty.h
72 nm-gnu.h
73 nm-lynx.h
74 nm-m3.h
75 nm-nbsd.h
76 nm-sysv4.h
77 none
78 ns32k
79 pa
80 powerpc
81 pyr
82 romp
83 rs6000
84 sh
85 sparc
86 tahoe
87 tm-lynx.h
88 tm-nbsd.h
89 tm-sunos.h
90 tm-sysv4.h
91 vax
92 v850
93 xm-aix4.h
94 xm-lynx.h
95 xm-mpw.h
96 xm-nbsd.h
97 xm-sysv4.h
98 w65
99 z8k
100
101 Things-to-lose:
102
103 Do-last:
104
105 # End of file.
This page took 0.03143 seconds and 4 git commands to generate.