* configure.in: added ebmon entry.
authorSteve Chamberlain <steve@cygnus>
Mon, 21 Oct 1991 16:29:54 +0000 (16:29 +0000)
committerSteve Chamberlain <steve@cygnus>
Mon, 21 Oct 1991 16:29:54 +0000 (16:29 +0000)
* output-file.c (output_file_create, output_file_close) added
stuff to use bfd.
* write.c: more bfd support
* config/obj-coff.c  config/obj-coff.h use bfd for swapping
header info.
* config/tc-a29k: added the reloc types we support now

gas/configure.in

index d30544371e3ba6053f4629b5641907ac97a0d420..e2cb397935b83d40fc6c2532952940896db51c28 100644 (file)
@@ -6,7 +6,7 @@
 srctrigger=as.c
 srcname="gas"
 targetdependent=true
-
+need_bfd=
 # per-host:
 
 gas_host=generic
@@ -45,9 +45,15 @@ cpu_type=${target_cpu}
 
 # assign object format
 case ${target_os} in
-sysv* | -coff*)
+sysv* | -coff* | ebmon )
        obj_format=coff
        ;;
+
+hds)
+       obj_format=ieee
+       need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+       ;;
+
 bout*)
        obj_format=bout
        ;;
@@ -69,6 +75,11 @@ vax)
        ;;
 esac
 
+# and target makefile frag
+
+target_makefile_frag=config/tmake-${target_cpu}
+
+
 files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \
        config/tc-${cpu_type}.h config/te-${emulation}.h \
        config/obj-${obj_format}.h config/obj-${obj_format}.c \