source: rtems/c/configure.ac @ c2e9632

4.104.114.84.95
Last change on this file since c2e9632 was 1b7c9183, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/31/04 at 10:56:48

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • configure.ac: Add --with-project-root, --with-project-top to rtems_bsp_configure.
  • Property mode set to 100644
File size: 2.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.59)
6AC_INIT([rtems-c],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([TOOL_TARGETS])
8RTEMS_TOP(..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define foreign 1.8])
13AM_MAINTAINER_MODE
14
15## These options are used within this file.
16RTEMS_ENABLE_BARE
17RTEMS_ENABLE_RTEMSBSP
18
19RTEMS_CHECK_CPU
20
21AS_IF([test x"$enable_rtemsbsp" = x"no"],[
22  rtems_bsp=""
23],[
24  AS_IF([test -z "$enable_rtemsbsp"],
25    [RTEMS_CHECK_BSPS(rtems_bsp)],
26    [rtems_bsp="$enable_rtemsbsp"])
27
28for i in $rtems_bsp; do
29
30    # make sure there is a make/custom file for the bsp
31    RTEMS_CHECK_CUSTOM_BSP(i)
32 
33    RTEMS_BSP_ALIAS($i,bspdir)
34
35    # Is there code where there should be for this BSP?
36    # The bare bsp is a special case as it is not under the RTEMS_CPU path
37    case $bspdir in
38      bare)
39        bspcpudir=
40        ;;
41      *)
42        bspcpudir=$RTEMS_CPU/
43        ;;
44    esac
45     
46    if test -d "$srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$bspcpudir$bspdir"; then
47      RTEMS_BSP_LIST="$RTEMS_BSP_LIST $i"
48    else
49      AC_MSG_ERROR([unable to find libbsp directory ($bspdir) for  $i])
50    fi
51done
52])
53
54#
55# Compose the configuration arguments to be passed to c/src/configure
56#
57##
58## Partially borrowed from autoconf-2.13
59##
60
61## Adjust paths
62_RTEMS_ADJUST_SRCDIR([rtems_bsp_configure],[src])
63rtems_bsp_configure="$rtems_bsp_configure/configure"
64  RTEMS_CONFIGURE_ARGS_QUOTE([rtems_bsp_configure_args],
65    [-enable-rtemsbsp=* | --enable-rtemsbsp=* ) ;;])
66
67rtems_bsp_configure="$rtems_bsp_configure $rtems_bsp_configure_args"
68rtems_bsp_configure="$rtems_bsp_configure '--with-project-root=../../'"
69rtems_bsp_configure="$rtems_bsp_configure '--with-project-top=../../'"
70AC_SUBST(rtems_bsp_configure)
71
72AC_SUBST(RTEMS_BSP_LIST)
73
74# Explicitly list all Makefiles here
75AC_CONFIG_FILES([Makefile],[
76for bsp in : $RTEMS_BSP_LIST; do test "x$bsp" = x: && continue
77cat >> Makefile << BSPEOF
78
79$bsp: src/configure
80        @set fnord \$(MAKEFLAGS); amf=\[$]\[$]2; \\
81          echo "Configuring RTEMS_BSP=$bsp"; \\
82          \$(mkdir_p) $bsp; \\
83          ( cd $bsp && \\
84            CONFIG_SHELL=\$(SHELL) RTEMS_BSP=$bsp \$(rtems_bsp_configure) ) \\
85          || case "\$\$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
86BSPEOF
87done
88],[RTEMS_BSP_LIST="$RTEMS_BSP_LIST"])
89AC_OUTPUT
90
91echo
92echo target architecture: $target_cpu.
93echo available BSPs: $rtems_bsp.
94echo \'${MAKE} all\' will build the following BSPs: $RTEMS_BSP_LIST.
95echo other BSPs can be built with \'${MAKE} RTEMS_BSP=\"bsp1 bsp2 ...\"\'
96echo
Note: See TracBrowser for help on using the repository browser.