source: trunk/essentials/sys-devel/automake-1.9/m4/multi.m4

Last change on this file was 3086, checked in by bird, 18 years ago

automake 1.9.6

File size: 1.8 KB
Line 
1## -*- Autoconf -*-
2# Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, 2005
3# Free Software Foundation, Inc.
4#
5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
8
9# serial 5
10
11# AM_ENABLE_MULTILIB([MAKEFILE], [REL-TO-TOP-SRCDIR])
12# ---------------------------------------------------
13# Add --enable-multilib to configure.
14AC_DEFUN([AM_ENABLE_MULTILIB],
15[# Default to --enable-multilib
16AC_ARG_ENABLE(multilib,
17[ --enable-multilib build many library versions (default)],
18[case "$enableval" in
19 yes) multilib=yes ;;
20 no) multilib=no ;;
21 *) AC_MSG_ERROR([bad value $enableval for multilib option]) ;;
22 esac],
23 [multilib=yes])
24
25# We may get other options which we leave undocumented:
26# --with-target-subdir, --with-multisrctop, --with-multisubdir
27# See config-ml.in if you want the gory details.
28
29if test "$srcdir" = "."; then
30 if test "$with_target_subdir" != "."; then
31 multi_basedir="$srcdir/$with_multisrctop../$2"
32 else
33 multi_basedir="$srcdir/$with_multisrctop$2"
34 fi
35else
36 multi_basedir="$srcdir/$2"
37fi
38AC_SUBST(multi_basedir)
39
40AC_OUTPUT_COMMANDS([
41# Only add multilib support code if we just rebuilt the top-level
42# Makefile.
43case " $CONFIG_FILES " in
44 *" ]m4_default([$1],Makefile)[ "*)
45 ac_file=]m4_default([$1],Makefile)[ . ${multi_basedir}/config-ml.in
46 ;;
47esac],
48 [
49srcdir="$srcdir"
50host="$host"
51target="$target"
52with_multisubdir="$with_multisubdir"
53with_multisrctop="$with_multisrctop"
54with_target_subdir="$with_target_subdir"
55ac_configure_args="${multilib_arg} ${ac_configure_args}"
56multi_basedir="$multi_basedir"
57CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
58CC="$CC"])])dnl
Note: See TracBrowser for help on using the repository browser.