HPPA BS
[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 ieee.c
69 libaout.h
70 libbfd-in.h
71 cpu-a29k.c
72 cpu-i386.c
73 cpu-m68k.c
74 cpu-mips.c
75 cpu-vax.c
76 cpu-h8300.c
77 cpu-hppa.c
78 cpu-i960.c
79 cpu-m88k.c
80 cpu-rs6000.c
81 hp300bsd.c
82 init.c
83 cpu-sparc.c
84 libbfd.c
85 libbfd.h
86 libcoff-in.h
87 libcoff.h
88 libhppa.h
89 libieee.h
90 liboasys.h
91 newsos3.c
92 oasys.c
93 opncls.c
94 reloc.c
95 rs6000-core.c
96 scripts
97 seclet.c
98 seclet.h
99 section.c
100 srec.c
101 stab-syms.c
102 sunos.c
103 syms.c
104 targets.c
105 tekhex.c
106 trad-core.c
107 trad-core.h
108
109 Do-last:
110
111 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
112 echo Keeping v9 in aoutx.h
113 else
114 echo Sanitizing v9 in aoutx.h
115 rm -f new
116 while grep -s start-sanitize-v9 aoutx.h ; do
117 sed -e '/start-sanitize-v9/,/end-sanitize-v9/d' <aoutx.h >new
118 if [ -n "${safe}" ] ; then
119 mv aoutx.h .Recover
120 else
121 rm aoutx.h
122 fi
123 mv new aoutx.h
124 done
125 fi
126
127 echo Done in `pwd`.
128
129 # End of file.
This page took 0.033616 seconds and 5 git commands to generate.