jaguar support.

This commit is contained in:
David Edelsohn 1995-10-18 20:23:39 +00:00
parent de5ebe2eba
commit dee64d723f
3 changed files with 42 additions and 0 deletions

View File

@ -231,6 +231,39 @@ else
done
fi
if [ -n "${verbose}" ] ; then
echo Processing \"jaguar\"...
fi
jaguar_files="config.sub configure.in cfg-ml-com.in"
if ( echo $* | grep keep\-jaguar > /dev/null ) ; then
for i in $jaguar_files ; do
if test ! -d $i && (grep sanitize-jaguar $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping jaguar stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-jaguar $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"jaguar\" from $i...
fi
cp $i new
sed '/start\-sanitize\-jaguar/,/end-\sanitize\-jaguar/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
psion_files="config.sub configure.in"
if ( echo $* | grep keep\-psion > /dev/null ) ; then

View File

@ -108,6 +108,11 @@ h8300-*-*)
h8500-*-*)
multidirs="mbig msmall mcompact mmedium"
;;
# start-sanitize-jaguar
jaguar-*-*)
multidirs="be"
;;
# end-sanitize-jaguar
sh-*-*)
multidirs="ml"
# start-sanitize-sh3e

View File

@ -422,6 +422,10 @@ case "${target}" in
# but that's okay since emacs doesn't work anyway
noconfigdirs="$noconfigdirs emacs emacs19"
;;
# start-sanitize-jaguar
jaguar-*-*)
;;
# end-sanitize-jaguar
powerpc-*-aix*)
# copied from rs6000-*-* entry
noconfigdirs="$noconfigdirs ld gprof textutils cvs"