diff options
author | Ian Lance Taylor <ian@airs.com> | 1992-08-18 21:24:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1992-08-18 21:24:59 +0000 |
commit | 4b857710641cfe0572abf21a7a3345e0975a716d (patch) | |
tree | 4092c7de57f1f21b18e045d888631ffcbf52e21a /gas/configure.in | |
parent | 6f28dd0bca730aaaf5276dde77ad38881cc39a61 (diff) | |
download | gdb-4b857710641cfe0572abf21a7a3345e0975a716d.zip gdb-4b857710641cfe0572abf21a7a3345e0975a716d.tar.gz gdb-4b857710641cfe0572abf21a7a3345e0975a716d.tar.bz2 |
Moved in from p3:
Tue Aug 18 14:16:38 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: always create installation directories. Removed
MINUS_G, set CFLAGS to default to -g, added FLAGS_TO_PASS, passed
FLAGS_TO_PASS to recursive makes.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gas/configure.in b/gas/configure.in index dc94cc9..b92296d 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -133,7 +133,7 @@ coff* | sysv*) vxworks) case ${target_cpu} in i960) obj_format=bout ;; - m68k|m680[01234]0) + m68k|m680[01234]0|m683?2) obj_format=aout emulation=sun3 ;; @@ -144,6 +144,9 @@ OSE) obj_format=aout emulation=sun3 ;; +aout) + obj_format=aout + ;; *) case ${target_vendor} in aout) obj_format=aout ;; @@ -171,6 +174,7 @@ esac case ${target_cpu} in sparclite) cpu_type=sparc ;; m680[01234]0) cpu_type=m68k ;; +m683?2) cpu_type=m68k ;; esac # and target makefile frag |