]>
Commit | Line | Data |
---|---|---|
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 | ||
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 | ||
26 | Makefile.in | |
27 | README.CYGNUS | |
28 | adp.h | |
29 | adperr.h | |
30 | angel.h | |
31 | ardi.c | |
32 | ardi.h | |
33 | armdbg.h | |
34 | buffers.h | |
35 | bytesex.c | |
36 | bytesex.h | |
37 | chandefs.h | |
38 | channels.h | |
39 | chanpriv.h | |
40 | configure.in | |
41 | crc.c | |
42 | crc.h | |
43 | dbg_conf.h | |
44 | dbg_cp.h | |
45 | dbg_hif.h | |
46 | dbg_rdi.h | |
47 | devclnt.h | |
48 | devices.h | |
49 | devsw.c | |
50 | devsw.h | |
51 | drivers.c | |
52 | drivers.h | |
53 | endian.h | |
54 | etherdrv.c | |
55 | ethernet.h | |
56 | host.h | |
57 | hostchan.c | |
58 | hostchan.h | |
59 | hsys.c | |
60 | hsys.h | |
61 | logging.c | |
62 | logging.h | |
63 | msgbuild.c | |
64 | msgbuild.h | |
65 | params.c | |
66 | params.h | |
67 | rx.c | |
68 | rxtx.h | |
69 | serdrv.c | |
70 | serpardr.c | |
71 | sys.h | |
72 | tx.c | |
73 | unixcomm.c | |
74 | unixcomm.h | |
75 | ||
76 | # Things which are explicitly *not* kept, for now. | |
77 | ||
78 | Things-to-lose: | |
79 | ||
80 | Do-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 | ||
85 | for 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 | |
89 | done | |
90 | ||
91 | # | |
92 | # End of file. |