source: rtems/c/configure.ac @ 7273b6e

4.104.114.84.95
Last change on this file since 7273b6e was 7273b6e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:54:58

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[66387986]1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
[eb299afc]4
[66387986]5AC_PREREQ(2.52)
[7273b6e]6AC_INIT([rtems-c],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
[66387986]7AC_CONFIG_SRCDIR([src])
[eb299afc]8RTEMS_TOP(..)
9AC_CONFIG_AUX_DIR(..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
[7273b6e]13AM_INIT_AUTOMAKE([no-define foreign 1.6])
[eb299afc]14AM_MAINTAINER_MODE
15
[66387986]16## These options are used within this file.
[eb299afc]17RTEMS_ENABLE_BARE
18RTEMS_ENABLE_RTEMSBSP(rtems_bsp)
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
[d049568]23AS_IF([test -z "$rtems_bsp"],
24  [RTEMS_CHECK_BSPS(rtems_bsp)])
[eb299afc]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
[b62a92c]35    case $bspdir in
[eb299afc]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
[eab41f63]59_RTEMS_ADJUST_SRCDIR([rtems_bsp_configure],[src])
60rtems_bsp_configure="$rtems_bsp_configure/configure"
[eb299afc]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      ;;
[ecd5441]81    -enable-rtemsbsp=* | --enable-rtemsbsp=*) ;;
[eb299afc]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
[70810dc]93# Explicitly list all Makefiles here
[d049568]94AC_CONFIG_FILES([Makefile])
[66387986]95AC_OUTPUT
[eb299afc]96
97echo
98echo target architecture: $target_cpu.
99echo available BSPs: $rtems_bsp.
[7b79761]100echo \'${MAKE} all\' will build the following BSPs: $RTEMS_BSP_LIST.
101echo other BSPs can be built with \'${MAKE} RTEMS_BSP=\"bsp1 bsp2 ...\"\'
[eb299afc]102echo
Note: See TracBrowser for help on using the repository browser.