diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-13 09:13:54 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-13 09:13:54 +0000 |
commit | 8b228fe958bcac8cf510ce2ed3d9ae24a717334e (patch) | |
tree | 1c81f8c629834de570bea9caf05e0199f6846c6d /gas/configure.in | |
parent | 1d63ba3ba05bc523b8c982284508d55bb6e591ed (diff) | |
download | gdb-8b228fe958bcac8cf510ce2ed3d9ae24a717334e.zip gdb-8b228fe958bcac8cf510ce2ed3d9ae24a717334e.tar.gz gdb-8b228fe958bcac8cf510ce2ed3d9ae24a717334e.tar.bz2 |
force all files to end in "/* end of filename"
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gas/configure.in b/gas/configure.in index b9268fa..485653d 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -58,15 +58,15 @@ ebmon-old) ;; ebmon) - obj_format=coff-bfd + obj_format=coffbfd need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a" target_cpu=ebmon29k ;; generic) obj_format=generic ;; -hds) - obj_format=coff-bfd +hms) + obj_format=coffbfd need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a" ;; @@ -85,6 +85,12 @@ coff* | sysv*) *) esac ;; +vxworks) + case ${target_cpu} in + i960) obj_format=bout ;; + *) obj_format=aout ;; + esac + ;; *) case ${target_vendor} in aout) obj_format=aout ;; @@ -117,3 +123,5 @@ files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \ config/atof-${atof}.c" links="host.h targ-cpu.c targ-cpu.h targ-env.h obj-format.h obj-format.c atof-targ.c" + +# end of gas/configure.in |