Thu May 21 13:14:25 1998 John Metzler <jmetzler@cygnus.com>
[deliverable/binutils-gdb.git] / gdb / rdi-share / .Sanitize
CommitLineData
ef40809d
NC
1# .Sanitize for devo/gdb/rdi-share
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
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
24Things-to-keep:
25
f45d8080 26Makefile.am
ef40809d
NC
27Makefile.in
28README.CYGNUS
f45d8080 29aclocal.m4
ef40809d
NC
30adp.h
31adperr.h
32angel.h
33ardi.c
34ardi.h
35armdbg.h
36buffers.h
37bytesex.c
38bytesex.h
39chandefs.h
40channels.h
41chanpriv.h
f45d8080 42configure
ef40809d
NC
43configure.in
44crc.c
45crc.h
46dbg_conf.h
47dbg_cp.h
48dbg_hif.h
49dbg_rdi.h
50devclnt.h
51devices.h
52devsw.c
53devsw.h
54drivers.c
55drivers.h
56endian.h
57etherdrv.c
58ethernet.h
59host.h
60hostchan.c
61hostchan.h
62hsys.c
63hsys.h
64logging.c
65logging.h
66msgbuild.c
67msgbuild.h
68params.c
69params.h
70rx.c
71rxtx.h
72serdrv.c
73serpardr.c
74sys.h
75tx.c
76unixcomm.c
77unixcomm.h
78
f45d8080 79
ef40809d
NC
80# Things which are explicitly *not* kept, for now.
81
82Things-to-lose:
83
84Do-last:
85
86# Don't try to clean directories here, as the 'mv' command will fail.
87# Also, grep fails on NFS mounted directories.
88
89for i in * ; do
90 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
91 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
92 fi
93done
94
95#
96# End of file.
This page took 0.0456 seconds and 4 git commands to generate.