diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-21 09:05:26 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-21 09:05:26 +0000 |
commit | 79a54a5b5260d53232499cd86818b09ea791a438 (patch) | |
tree | 255c9bcad5de14f77ac00f2d88db81604fc706ea /gas/configure.in | |
parent | 77219de22db033d9ca721f5934caa08cad19193d (diff) | |
download | gdb-79a54a5b5260d53232499cd86818b09ea791a438.zip gdb-79a54a5b5260d53232499cd86818b09ea791a438.tar.gz gdb-79a54a5b5260d53232499cd86818b09ea791a438.tar.bz2 |
doc. bring it in, use it.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/gas/configure.in b/gas/configure.in index 485653d..a7beaaf 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -1,3 +1,24 @@ +# This file is configure.inj +# +# Copyright (C) 1987-1992 Free Software Foundation, Inc. +# +# This file is part of GAS, the GNU Assembler. +# +# GAS is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# GAS is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GAS; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +# + # This file is a shell script that supplies the information necessary # to tailor a template configure script into the configure script # appropriate for this directory. For more information, check any @@ -5,9 +26,8 @@ srctrigger=as.c srcname="gas" -targetdependent=true need_bfd= -target_dependent=true +configdirs=doc # per-host: @@ -109,8 +129,9 @@ esac # assign floating point type case ${target_cpu} in -vax) atof=vax ;; -*) atof=ieee ;; +ns32k) atof=ns32k ;; +vax) atof=vax ;; +*) atof=ieee ;; esac # and target makefile frag |