1 # .Sanitize for devo/gdb/config.
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.
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
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.
20 if ( echo $* | grep keep\-gm > /dev/null ) ; then
21 keep_these_too="${gm_files} ${keep_these_too}"
22 if [ -n "${verbose}" ] ; then
23 echo Keeping ${gm_files}
26 lose_these_too="${gm_files} ${lose_these_too}"
27 if [ -n "${verbose}" ] ; then
28 echo Deleting ${gm_files}
34 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
35 keep_these_too="${tic80_files} ${keep_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Keeping ${tic80_files}
40 lose_these_too="${tic80_files} ${lose_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Deleting ${tic80_files}
46 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
47 keep_these_too="v850 ${keep_these_too}"
49 lose_these_too="v850 ${lose_these_too}"
54 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
55 keep_these_too="${d30v_files} ${keep_these_too}"
56 if [ -n "${verbose}" ] ; then
57 echo Keeping ${d30v_files}
60 lose_these_too="${d30v_files} ${lose_these_too}"
61 if [ -n "${verbose}" ] ; then
62 echo Deleting ${d30v_files}
66 # All files listed between the "Things-to-keep:" line and the
67 # "Files-to-sed:" line will be kept. All other files will be removed.
68 # Directories listed in this section will have their own Sanitize
69 # called. Directories not listed will be removed in their entirety