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