diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-03-27 03:10:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-03-27 03:10:53 +0000 |
commit | 6d133cc9dff70d06c61e9347e06bd22f7edf9c77 (patch) | |
tree | 153e84c84e79e8b83fe80c4f487f7b7fa477fb66 /sim/common/.Sanitize | |
parent | 77c9b27d9726f8c50c69ca7f30a65c4ec41607d0 (diff) | |
download | gdb-6d133cc9dff70d06c61e9347e06bd22f7edf9c77.zip gdb-6d133cc9dff70d06c61e9347e06bd22f7edf9c77.tar.gz gdb-6d133cc9dff70d06c61e9347e06bd22f7edf9c77.tar.bz2 |
Add sanitize-am30 markers. Keep details of AM30 implementation of
mn10300 out of the public eye.
Do something with top-level cgen directory.
Diffstat (limited to 'sim/common/.Sanitize')
-rw-r--r-- | sim/common/.Sanitize | 48 |
1 files changed, 35 insertions, 13 deletions
diff --git a/sim/common/.Sanitize b/sim/common/.Sanitize index 595894f..7e605bc 100644 --- a/sim/common/.Sanitize +++ b/sim/common/.Sanitize @@ -22,6 +22,13 @@ else lose_these_too="${cygnus_files} ${lose_these_too}" fi +am30_files="dv-core.c dv-pal.c dv-glue.c hw-base.c hw-base.h hw-device.c hw-device.h hw-ports.c hw-ports.h hw-properties.c hw-properties.h hw-tree.c hw-tree.h sim-hw.h" +if ( echo $* | grep keep\-am30 > /dev/null ) ; then + keep_these_too="${am30_files} ${keep_these_too}" +else + lose_these_too="${am30_files} ${lose_these_too}" +fi + # All files listed between the "Things-to-keep:" line and the # "Files-to-sed:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize @@ -117,19 +124,6 @@ tconfig.in Things-to-lose: -dv-core.c -dv-pal.c -hw-base.c -hw-base.h -hw-device.c -hw-device.h -hw-ports.c -hw-ports.h -hw-properties.c -hw-properties.h -hw-tree.c -hw-tree.h - Do-last: d30v_files="ChangeLog gennltvals.sh nltvals.def" @@ -160,6 +154,34 @@ else done fi +am30_files="ChangeLog" +if ( echo $* | grep keep\-am30 > /dev/null ) ; then + for i in $am30_files ; do + if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping am30 stuff in $i + fi + fi + done +else + for i in $am30_files ; do + if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"am30\" from $i... + fi + cp $i new + sed '/start\-sanitize\-am30/,/end-\sanitize\-am30/d' < $i > new + if [ -n "${safe}" -a ! -f .Recover/$i ] ; then + if [ -n "${verbose}" ] ; then + echo Caching $i in .Recover... + fi + mv $i .Recover + fi + mv new $i + fi + done +fi + cygnus_files="ChangeLog Make-common.in" if ( echo $* | grep keep\-cygnus > /dev/null ) ; then for i in $cygnus_files ; do |