| 1 | /* Copyright (c) 1995, 1996 Cygnus Support | 
|---|
| 2 |  * | 
|---|
| 3 |  * The authors hereby grant permission to use, copy, modify, distribute, | 
|---|
| 4 |  * and license this software and its documentation for any purpose, provided | 
|---|
| 5 |  * that existing copyright notices are retained in all copies and that this | 
|---|
| 6 |  * notice is included verbatim in any distributions. No written agreement, | 
|---|
| 7 |  * license, or royalty fee is required for any of the authorized uses. | 
|---|
| 8 |  * Modifications to this software may be copyrighted by their authors | 
|---|
| 9 |  * and need not follow the licensing terms described here, provided that | 
|---|
| 10 |  * the new terms are clearly indicated on the first page of each file where | 
|---|
| 11 |  * they apply. | 
|---|
| 12 |  * | 
|---|
| 13 |  * Process this file with autoconf to produce a configure script. | 
|---|
| 14 |  */ | 
|---|
| 15 | AC_PREREQ(2.59) | 
|---|
| 16 | AC_INIT(crt0.S) | 
|---|
| 17 |  | 
|---|
| 18 | if test "${enable_shared}" = "yes" ; then | 
|---|
| 19 |     echo "Shared libraries not supported for cross compiling, ignored" | 
|---|
| 20 | fi | 
|---|
| 21 |  | 
|---|
| 22 | if test "$srcdir" = "." ; then | 
|---|
| 23 |   if test "${with_target_subdir}" != "." ; then | 
|---|
| 24 |     libgloss_topdir="${srcdir}/${with_multisrctop}../../.." | 
|---|
| 25 |   else | 
|---|
| 26 |     libgloss_topdir="${srcdir}/${with_multisrctop}../.." | 
|---|
| 27 |   fi | 
|---|
| 28 | else | 
|---|
| 29 |   libgloss_topdir="${srcdir}/../.." | 
|---|
| 30 | fi | 
|---|
| 31 | AC_CONFIG_AUX_DIR($libgloss_topdir) | 
|---|
| 32 |  | 
|---|
| 33 | AC_CANONICAL_SYSTEM | 
|---|
| 34 | AC_ARG_PROGRAM | 
|---|
| 35 |  | 
|---|
| 36 | AC_PROG_INSTALL | 
|---|
| 37 |  | 
|---|
| 38 | LIB_AC_PROG_CC | 
|---|
| 39 | AS=${AS-as} | 
|---|
| 40 | AC_SUBST(AS) | 
|---|
| 41 | AR=${AR-ar} | 
|---|
| 42 | AC_SUBST(AR) | 
|---|
| 43 | LD=${LD-ld} | 
|---|
| 44 | AC_SUBST(LD) | 
|---|
| 45 | AC_PROG_RANLIB | 
|---|
| 46 | LIB_AM_PROG_AS | 
|---|
| 47 |  | 
|---|
| 48 | host_makefile_frag=${srcdir}/../config/default.mh | 
|---|
| 49 | target_makefile_frag=${srcdir}/../config/default.mt | 
|---|
| 50 |  | 
|---|
| 51 | dnl We have to assign the same value to other variables because autoconf | 
|---|
| 52 | dnl doesn't provide a mechanism to substitute a replacement keyword with | 
|---|
| 53 | dnl arbitrary data or pathnames. | 
|---|
| 54 | dnl | 
|---|
| 55 | host_makefile_frag_path=$host_makefile_frag | 
|---|
| 56 | AC_SUBST(host_makefile_frag_path) | 
|---|
| 57 | AC_SUBST_FILE(host_makefile_frag) | 
|---|
| 58 | target_makefile_frag_path=$target_makefile_frag | 
|---|
| 59 | AC_SUBST(target_makefile_frag_path) | 
|---|
| 60 | AC_SUBST_FILE(target_makefile_frag) | 
|---|
| 61 |  | 
|---|
| 62 | AC_CONFIG_FILES(Makefile, | 
|---|
| 63 | . ${libgloss_topdir}/config-ml.in, | 
|---|
| 64 | srcdir=${srcdir} | 
|---|
| 65 | target=${target} | 
|---|
| 66 | with_multisubdir=${with_multisubdir} | 
|---|
| 67 | ac_configure_args="${ac_configure_args} --enable-multilib" | 
|---|
| 68 | CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} | 
|---|
| 69 | libgloss_topdir=${libgloss_topdir} | 
|---|
| 70 | ) | 
|---|
| 71 | AC_OUTPUT | 
|---|