Remove GM-specific hackery, no longer needed.

This commit is contained in:
Stan Shebs 1994-06-26 23:41:34 +00:00
parent f488a4d631
commit a6148eeb0d
3 changed files with 2 additions and 46 deletions

View File

@ -1,4 +1,4 @@
# .Sanitize for devo/gas
# .Sanitize for devo/gas.
# Each directory to survive its way into a release will need a file
# like this one called "./.Sanitize". All keyword lines must exist,
@ -11,7 +11,7 @@
# The lines between the "Do-first:" line and the "Things-to-keep:"
# line are executed as a /bin/sh shell script before anything else is
# done in this
# done in this directory.
Do-first:
@ -21,12 +21,6 @@ else
lose_these_too="mpw-config.in mpw-make.in ChangeLog.mpw"
fi
if ( echo $* | grep keep\-gm > /dev/null ) ; then
keep_these_too="mpw-xconfig.in ChangeLog.gm ${keep_these_too}"
else
lose_these_too="mpw-xconfig.in ChangeLog.gm ${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

View File

@ -1,17 +0,0 @@
Wed Mar 23 12:39:36 1994 Stan Shebs (shebs@andros.cygnus.com)
* mpw-xconfig.in: Remove generic forward-includes, put rest of
statements inside a mips-idt-ecoff conditional.
Mon Jan 31 18:08:16 1994 Stan Shebs (shebs@andros.cygnus.com)
* mpw-xconfig.in: Get opcode/mips.h from the right place.
Tue Jan 25 10:52:22 1994 Stan Shebs (shebs@andros.cygnus.com)
* mpw-xconfig.in: Use forward-include to create include files.
Tue Jan 4 12:24:07 1994 Stan Shebs (shebs@andros.cygnus.com)
* mpw-xconfig.in: New file, mpw x mips configuration bits.

View File

@ -1,21 +0,0 @@
# Extra configuration fragment for GAS.
If "{target_canonical}" =~ /mips-idt-ecoff/
forward-include "{srcdir}"config:atof-ieee.c atof-targ.c
forward-include "{srcdir}"config:obj-ecoff.c obj-format.c
forward-include "{srcdir}"config:obj-ecoff.h obj-format.h
forward-include "{srcdir}"config:tc-mips.c targ-cpu.c
forward-include "{srcdir}"config:tc-mips.h targ-cpu.h
forward-include "{srcdir}"config:te-generic.h targ-env.h
echo '#define TARGET_CPU "mips"' >config.new
echo '#define TARGET_ALIAS "mips-idt-ecoff"' >>config.new
echo '#define TARGET_CANONICAL "mips-idt-ecoff"' >>config.new
echo '#define GAS_VERSION "cygnus-2.2.1"' >>config.new
MoveIfChange config.new config.h
End If