diff options
author | K. Richard Pixley <rich@cygnus> | 1991-04-04 18:19:53 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-04-04 18:19:53 +0000 |
commit | fecd2382e77b89f12c9d630ed4e42e9a54ba6953 (patch) | |
tree | 6cddf76f492c3485605175c97c13d9a24c65306f /gas/configure.in | |
parent | b6fc45ca4c306a4f6f6bdbaf90a69d3dab62777a (diff) | |
download | ppe42-binutils-fecd2382e77b89f12c9d630ed4e42e9a54ba6953.tar.gz ppe42-binutils-fecd2382e77b89f12c9d630ed4e42e9a54ba6953.zip |
Initial revision
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gas/configure.in b/gas/configure.in new file mode 100644 index 0000000000..4da7737d20 --- /dev/null +++ b/gas/configure.in @@ -0,0 +1,31 @@ +# 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 +# existing configure script. + +srctrigger=as.c +srcname="gas" + +case $target in +*-coff) + obj_format=coff + ;; +*-bout) + obj_format=bout + ;; +*) + obj_format=aout + ;; +esac + +case $target in +vax) + atof=vax + ;; +*) + atof=ieee + ;; +esac + +files="ho-${host}.h tc-${cpu_type}.c tc-${cpu_type}.h te-generic.h obj-${obj_format}.h obj-${obj_format}.c atof-${atof}.c" +links="host.h targ-cpu.c targ-cpu.h targ-env.h obj-format.h obj-format.c atof-targ.c" |