diff options
author | Doug Evans <dje@google.com> | 1998-07-24 15:46:17 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-07-24 15:46:17 +0000 |
commit | 456876c8c4acde3502377a3133f2120a5ae87a52 (patch) | |
tree | 9f319bc998ced349bae2124e7f4943273ba8c05e /configure.in | |
parent | 52e4073c5f4ac5d83f82bd36f49d5405b547e8fd (diff) | |
download | gdb-456876c8c4acde3502377a3133f2120a5ae87a52.zip gdb-456876c8c4acde3502377a3133f2120a5ae87a52.tar.gz gdb-456876c8c4acde3502377a3133f2120a5ae87a52.tar.bz2 |
* configure.in (mips64r5900-sky-elf*): Use config/mt-sky.
Set extraconfigdirs to build dvp-elf-as.
* configure (extraconfigdirs): New variable.
(SUBDIRS): Add extraconfigdirs and recurse on them too.
* Makefile.in (all): Move higher in file.
(EXTRA_TARGET_HOST_ALL_MODULES): New variable.
(EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
(ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
(CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
(INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f592b84..74b4afb 100644 --- a/configure.in +++ b/configure.in @@ -335,6 +335,11 @@ case "${target}" in powerpc-*-netware*) target_makefile_frag="${target_makefile_frag} config/mt-netware" ;; +# start-sanitize-sky + mips64r59*-sky-elf*) + target_makefile_frag="${target_makefile_frag} config/mt-r5900 config/mt-sky" + ;; +# end-sanitize-sky # start-sanitize-r5900 mips64r59*) target_makefile_frag="${target_makefile_frag} config/mt-r5900" @@ -784,10 +789,16 @@ case "${target}" in mips*-*-bsd*) noconfigdirs="$noconfigdirs gprof target-libgloss" ;; - mipstx39-*-*) - noconfigdirs="$noconfigdirs gprof" # same as generic mips + mipstx39-*-*) + noconfigdirs="$noconfigdirs gprof" # same as generic mips target_configdirs="${target_configdirs} target-libstub target-cygmon" ;; +# start-sanitize-sky + mips64r5900-sky-elf*) + noconfigdirs="$noconfigdirs gprof" + extraconfigdirs="$extraconfigdirs gas,dvp-gas,dvp-elf" + ;; +# end-sanitize-sky mips*-*-*) noconfigdirs="$noconfigdirs gprof" ;; |