* doc/as.texinfo: Updated for -MD option.
[deliverable/binutils-gdb.git] / config / .Sanitize
... / ...
CommitLineData
1# .Sanitize for devo/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
16Do-first:
17
18if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
19 keep_these_too="${keep_these_too} mt-r5900"
20else
21 lose_these_too="${lose_these_too} mt-r5900"
22fi
23
24# All files listed between the "Things-to-keep:" line and the
25# "Files-to-sed:" line will be kept. All other files will be removed.
26# Directories listed in this section will have their own Sanitize
27# called. Directories not listed will be removed in their entirety
28# with rm -rf.
29
30Things-to-keep:
31
32ChangeLog
33mh-a68bsd
34mh-aix386
35mh-apollo68
36mh-cxux
37mh-cygwin32
38mh-decstation
39mh-delta88
40mh-dgux
41mh-dgux386
42mh-go32
43mh-hp300
44mh-hpux
45mh-hpux8
46mh-irix4
47mh-irix5
48mh-irix6
49mh-lynxos
50mh-lynxrs6k
51mh-m68kpic
52mh-ncr3000
53mh-ncrsvr43
54mh-necv4
55mh-papic
56mh-riscos
57mh-sco
58mh-solaris
59mh-sparcpic
60mh-sun3
61mh-sysv
62mh-sysv4
63mh-vaxult2
64mh-windows
65mh-x86pic
66mpw
67mpw-mh-mpw
68mt-m68kpic
69mt-netware
70mt-papic
71mt-sparcpic
72mt-v810
73mt-x86pic
74
75Things-to-lose:
76
77Do-last:
78
79r5900_files="ChangeLog"
80
81if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
82 for i in $r5900_files ; do
83 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
84 if [ -n "${verbose}" ] ; then
85 echo Keeping r5900 stuff in $i
86 fi
87 fi
88 done
89else
90 for i in $r5900_files ; do
91 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
92 if [ -n "${verbose}" ] ; then
93 echo Removing traces of \"r5900\" from $i...
94 fi
95 cp $i new
96 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
97 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
98 if [ -n "${verbose}" ] ; then
99 echo Caching $i in .Recover...
100 fi
101 mv $i .Recover
102 fi
103 mv new $i
104 fi
105 done
106fi
107
108
109# End of file.
This page took 0.023194 seconds and 4 git commands to generate.