source: rtems/c/configure.in @ 223d791

4.104.114.84.95
Last change on this file since 223d791 was 7b79761, checked in by Joel Sherrill <joel.sherrill@…>, on 03/14/01 at 00:18:08

2001-03-08 Ralf Corsepiu <corsepius@…>

  • configure.in: Use ${MAKE} in message at the end of the configure.in.
  • Property mode set to 100644
File size: 2.6 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(src)
7RTEMS_TOP(..)
8AC_CONFIG_AUX_DIR(..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15dnl These options are used within this file.
16RTEMS_ENABLE_BARE
17RTEMS_ENABLE_RTEMSBSP(rtems_bsp)
18
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22if test -z "$rtems_bsp"; then
23  RTEMS_CHECK_BSPS(rtems_bsp)
24fi
25
26for i in $rtems_bsp; do
27
28    # make sure there is a make/custom file for the bsp
29    RTEMS_CHECK_CUSTOM_BSP(i)
30 
31    RTEMS_BSP_ALIAS($i,bspdir)
32
33    # Is there code where there should be for this BSP?
34    # The bare bsp is a special case as it is not under the RTEMS_CPU path
35    case $bspdir in
36      bare)
37        bspcpudir=
38        ;;
39      *)
40        bspcpudir=$RTEMS_CPU/
41        ;;
42    esac
43     
44    if test -d "$srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$bspcpudir$bspdir"; then
45      RTEMS_BSP_LIST="$RTEMS_BSP_LIST $i"
46    else
47      AC_MSG_ERROR([unable to find libbsp directory ($bspdir) for  $i])
48    fi
49done
50
51#
52# Compose the configuration arguments to be passed to c/src/configure
53#
54##
55## Partially borrowed from autoconf-2.13
56##
57
58## Adjust paths
59_RTEMS_ADJUST_SRCDIR([rtems_bsp_configure],[src])
60rtems_bsp_configure="$rtems_bsp_configure/configure"
61
62## Remove --cache-file, --srcdir and --enable-rtemsbsp arguments
63## so they do not pile up
64  rtems_bsp_configure_args=
65  for ac_arg in $ac_configure_args; do
66    if test -n "$ac_prev"; then
67      ac_prev=
68      continue
69    fi
70    case "$ac_arg" in
71    -cache-file | --cache-file | --cache-fil | --cache-fi \
72    | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
73      ac_prev=cache_file ;;
74    -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
75    | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
76      ;;
77    -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
78      ac_prev=srcdir ;;
79    -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
80      ;;
81    -enable-rtemsbsp=* | --enable-rtemsbsp=*) ;;
82    -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
83      ;;
84    *) rtems_bsp_configure_args="$rtems_bsp_configure_args $ac_arg" ;;
85    esac
86  done
87
88rtems_bsp_configure="$rtems_bsp_configure $rtems_bsp_configure_args"
89AC_SUBST(rtems_bsp_configure)
90
91AC_SUBST(RTEMS_BSP_LIST)
92
93AC_CONFIG_SUBDIRS(make)
94
95# Explicitly list all Makefiles here
96AC_OUTPUT(
97Makefile
98)
99
100echo
101echo target architecture: $target_cpu.
102echo available BSPs: $rtems_bsp.
103echo \'${MAKE} all\' will build the following BSPs: $RTEMS_BSP_LIST.
104echo other BSPs can be built with \'${MAKE} RTEMS_BSP=\"bsp1 bsp2 ...\"\'
105echo
Note: See TracBrowser for help on using the repository browser.