Per, guess what you forgot to do...
[deliverable/binutils-gdb.git] / bfd / .Sanitize
1 # Sanitize.in for devo/bfd.
2
3 # Each directory to survive it's 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
15
16 Do-first:
17
18 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25 COPYING
26 PORTING
27 doc
28 ChangeLog
29 Makefile.dos
30 Makefile.in
31 TODO
32 VERSION
33 aout32.c
34 aout64.c
35 aoutf1.h
36 aoutx.h
37 aout-target.h
38 archive.c
39 archures.c
40 bfd-in.h
41 bfd.c
42 bout.c
43 cache.c
44 ctor.c
45 coff-a29k.c
46 coff-h8300.c
47 coff-i386.c
48 coff-i960.c
49 coff-m68k.c
50 coff-m88k.c
51 coff-mips.c
52 coff-msym.c
53 coff-rs6000.c
54 coffcode.h
55 config
56 configure.bat
57 configure.in
58 core.c
59 demo64.c
60 elf.c
61 filemode.c
62 format.c
63 gen-aout.c
64 host-aout.c
65 hosts
66 hppa.c
67 i386aout.c
68 i386linux.c
69 ieee.c
70 libaout.h
71 libbfd-in.h
72 cpu-a29k.c
73 cpu-i386.c
74 cpu-m68k.c
75 cpu-mips.c
76 cpu-vax.c
77 cpu-h8300.c
78 cpu-hppa.c
79 cpu-i960.c
80 cpu-m88k.c
81 cpu-rs6000.c
82 hp300bsd.c
83 init.c
84 cpu-sparc.c
85 libbfd.c
86 libbfd.h
87 libcoff-in.h
88 libcoff.h
89 libhppa.h
90 libieee.h
91 liboasys.h
92 newsos3.c
93 oasys.c
94 opncls.c
95 reloc.c
96 rs6000-core.c
97 scripts
98 seclet.c
99 seclet.h
100 section.c
101 srec.c
102 stab-syms.c
103 sunos.c
104 syms.c
105 targets.c
106 tekhex.c
107 trad-core.c
108 trad-core.h
109
110 Do-last:
111
112 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
113 echo Keeping v9 in aoutx.h
114 else
115 echo Sanitizing v9 in aoutx.h
116 rm -f new
117 while grep -s start-sanitize-v9 aoutx.h ; do
118 sed -e '/start-sanitize-v9/,/end-sanitize-v9/d' <aoutx.h >new
119 if [ -n "${safe}" ] ; then
120 mv aoutx.h .Recover
121 else
122 rm aoutx.h
123 fi
124 mv new aoutx.h
125 done
126 fi
127
128 echo Done in `pwd`.
129
130 # End of file.
This page took 0.034975 seconds and 5 git commands to generate.