source: rtems/aclocal/rtems-top.m4 @ f00c5c6

5
Last change on this file since f00c5c6 was 6963854d, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/18/12 at 05:47:52

Remove references to configure.in.

  • Property mode set to 100644
File size: 869 bytes
Line 
1# AC_DISABLE_OPTION_CHECKING is not available before 2.62
2AC_PREREQ(2.62)
3
4dnl
5dnl RTEMS_TOP($1)
6dnl
7dnl $1 .. relative path from this configure.ac to the toplevel configure.ac
8dnl
9AC_DEFUN([RTEMS_TOP],
10[dnl
11AC_REQUIRE([RTEMS_VERSIONING])
12AC_REQUIRE([AC_DISABLE_OPTION_CHECKING])
13AC_CONFIG_AUX_DIR([$1])
14AC_CHECK_PROGS(MAKE, gmake make)
15AC_BEFORE([$0], [AM_INIT_AUTOMAKE])dnl
16
17AC_PREFIX_DEFAULT([/opt/rtems-][_RTEMS_API])
18
19RTEMS_TOPdir="$1";
20AC_SUBST(RTEMS_TOPdir)
21
22dots=`echo $with_target_subdir|\
23sed -e 's,^\.$,,' -e 's%^\./%%' -e 's%[[^/]]$%&/%' -e 's%[[^/]]*/%../%g'`
24PROJECT_TOPdir=${dots}${RTEMS_TOPdir}/'$(top_builddir)'
25AC_SUBST(PROJECT_TOPdir)
26
27PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)"
28AC_SUBST(PROJECT_ROOT)
29
30AC_MSG_CHECKING([for RTEMS Version])
31AC_MSG_RESULT([_RTEMS_VERSION])
32pkgdatadir="${datadir}"/rtems[]_RTEMS_API;
33AC_SUBST([pkgdatadir])
34])dnl
Note: See TracBrowser for help on using the repository browser.