1999-01-31 17:57:31 1998 Michael Meissner <meissner@cygnus.com>
[deliverable/binutils-gdb.git] / ld / scripttempl / .Sanitize
1 # .Sanitize for devo/ld/scripttempl
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="tic80coff.sc"
19 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
20 keep_these_too="${tic80_files} ${keep_these_too}"
21 else
22 lose_these_too="${tic80_files} ${lose_these_too}"
23 fi
24
25 beos_files="i386beos.sc"
26 if ( echo $* | grep keep\-beos > /dev/null ) ; then
27 keep_these_too="${beos_files} ${keep_these_too}"
28 else
29 lose_these_too="${beos_files} ${lose_these_too}"
30 fi
31
32 # All files listed between the "Things-to-keep:" line and the
33 # "Do-last:" line will be kept. All other files will be removed.
34 # Directories listed in this section will have their own Sanitize
35 # called. Directories not listed will be removed in their entirety
36 # with rm -rf.
37
38 Things-to-keep:
39
40 README
41 a29k.sc
42 aix.sc
43 alpha.sc
44 aout.sc
45 armaout.sc
46 armcoff.sc
47 delta68.sc
48 ebmon29k.sc
49 elf.sc
50 elfd10v.sc
51 elfd30v.sc
52 elfppc.sc
53 go32coff.sc
54 h8300.sc
55 h8300h.sc
56 h8300s.sc
57 h8500.sc
58 h8500b.sc
59 h8500c.sc
60 h8500m.sc
61 h8500s.sc
62 hppaelf.sc
63 i386coff.sc
64 i386go32.sc
65 i386lynx.sc
66 i386msdos.sc
67 i960.sc
68 m68kaux.sc
69 m68kcoff.sc
70 m68klynx.sc
71 m88kbcs.sc
72 mips.sc
73 mipsbsd.sc
74 nw.sc
75 pe.sc
76 ppcpe.sc
77 psos.sc
78 riscix.sc
79 sa29200.sc
80 sh.sc
81 sparccoff.sc
82 sparclynx.sc
83 st2000.sc
84 tic30aout.sc
85 tic30coff.sc
86 v850.sc
87 vanilla.sc
88 w65.sc
89 z8000.sc
90
91 Things-to-lose:
92
93
94
95 # The lines between the "Do-last:" line and the end of the file
96 # are executed as a /bin/sh shell script after everything else is
97 # done.
98
99 Do-last:
100
101 v850_files="v850.sc"
102 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
103 for i in $v850_files ; do
104 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
105 if [ -n "${verbose}" ] ; then
106 echo Keeping v850e stuff in $i
107 fi
108 fi
109 done
110 else
111 for i in $v850_files ; do
112 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
113 if [ -n "${verbose}" ] ; then
114 echo Removing traces of \"v850e\" from $i...
115 fi
116 cp $i new
117 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
118 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
119 if [ -n "${verbose}" ] ; then
120 echo Caching $i in .Recover...
121 fi
122 mv $i .Recover
123 fi
124 mv new $i
125 fi
126 done
127 fi
128
129 # eof
This page took 0.035164 seconds and 4 git commands to generate.