* Makefile.in (LIBCOMMON): Define.
[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 if ( echo $* | grep keep\-arc > /dev/null ) ; then
19 keep_these_too="arc ${keep_these_too}"
20 else
21 lose_these_too="arc ${lose_these_too}"
22 fi
23
24 gm_files="tm-magic.h"
25
26 if ( echo $* | grep keep\-gm > /dev/null ) ; then
27 keep_these_too="${gm_files} ${keep_these_too}"
28 if [ -n "${verbose}" ] ; then
29 echo Keeping ${gm_files}
30 fi
31 else
32 lose_these_too="${gm_files} ${lose_these_too}"
33 if [ -n "${verbose}" ] ; then
34 echo Deleting ${gm_files}
35 fi
36 fi
37
38 d10v_files="d10v"
39
40 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
41 keep_these_too="${d10v_files} ${keep_these_too}"
42 if [ -n "${verbose}" ] ; then
43 echo Keeping ${d10v_files}
44 fi
45 else
46 lose_these_too="${d10v_files} ${lose_these_too}"
47 if [ -n "${verbose}" ] ; then
48 echo Deleting ${d10v_files}
49 fi
50 fi
51
52 v850_files="v850"
53
54 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
55 keep_these_too="${v850_files} ${keep_these_too}"
56 if [ -n "${verbose}" ] ; then
57 echo Keeping ${v850_files}
58 fi
59 else
60 lose_these_too="${v850_files} ${lose_these_too}"
61 if [ -n "${verbose}" ] ; then
62 echo Deleting ${v850_files}
63 fi
64 fi
65
66 m32r_files="m32r"
67
68 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
69 keep_these_too="${m32r_files} ${keep_these_too}"
70 if [ -n "${verbose}" ] ; then
71 echo Keeping ${m32r_files}
72 fi
73 else
74 lose_these_too="${m32r_files} ${lose_these_too}"
75 if [ -n "${verbose}" ] ; then
76 echo Deleting ${m32r_files}
77 fi
78 fi
79
80 # All files listed between the "Things-to-keep:" line and the
81 # "Files-to-sed:" line will be kept. All other files will be removed.
82 # Directories listed in this section will have their own Sanitize
83 # called. Directories not listed will be removed in their entirety
84 # with rm -rf.
85
86 Things-to-keep:
87
88 a29k
89 alpha
90 arm
91 convex
92 gould
93 h8300
94 h8500
95 i386
96 i960
97 m68k
98 m88k
99 mips
100 nm-empty.h
101 nm-gnu.h
102 nm-lynx.h
103 nm-m3.h
104 nm-nbsd.h
105 nm-sysv4.h
106 none
107 ns32k
108 pa
109 powerpc
110 pyr
111 romp
112 rs6000
113 sh
114 sparc
115 tahoe
116 tm-lynx.h
117 tm-nbsd.h
118 tm-sunos.h
119 tm-sysv4.h
120 vax
121 xm-aix4.h
122 xm-lynx.h
123 xm-mpw.h
124 xm-nbsd.h
125 xm-sysv4.h
126 w65
127 z8k
128
129 Things-to-lose:
130
131 Do-last:
132
133 # End of file.
This page took 0.035854 seconds and 4 git commands to generate.