4.104.114.84.95
Last change
on this file since 4bfe135 was
4bfe135,
checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/31/02 at 14:40:48
|
2002-07-31 Ralf Corsepius <corsepiu@…>
- aclocal/rtems-top.m4: Use with_project_root and MULTIBUILDTOP to
compose PROJECT_TOPdir (Fixes hppa1.1/genoffset problem).
|
-
Property mode set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | dnl $Id$ |
---|
2 | |
---|
3 | dnl |
---|
4 | dnl RTEMS_TOP($1) |
---|
5 | dnl |
---|
6 | dnl $1 .. relative path from this configure.in to the toplevel configure.in |
---|
7 | dnl |
---|
8 | AC_DEFUN(RTEMS_TOP, |
---|
9 | [dnl |
---|
10 | AC_REQUIRE([RTEMS_VERSIONING]) |
---|
11 | AC_CHECK_PROGS(MAKE, gmake make) |
---|
12 | AC_BEFORE([$0], [AC_CONFIG_AUX_DIR])dnl |
---|
13 | AC_BEFORE([$0], [AM_INIT_AUTOMAKE])dnl |
---|
14 | |
---|
15 | AC_PREFIX_DEFAULT([/opt/rtems]) |
---|
16 | |
---|
17 | ## HACK to allow gnu-make conditionals in automake-Makefiles. |
---|
18 | ENDIF=endif |
---|
19 | AC_SUBST(ENDIF) |
---|
20 | |
---|
21 | RTEMS_TOPdir="$1"; |
---|
22 | AC_SUBST(RTEMS_TOPdir) |
---|
23 | |
---|
24 | ## with_target_subdirs is handled implicitly by autoconf |
---|
25 | test -n "$with_target_subdir" || with_target_subdir="." |
---|
26 | |
---|
27 | if test "$with_target_subdir" = "." ; then |
---|
28 | # Native |
---|
29 | PROJECT_TOPdir="${with_project_root}${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)" |
---|
30 | else |
---|
31 | # Cross |
---|
32 | dots=`echo $with_target_subdir|\ |
---|
33 | sed -e 's%^\./%%' -e 's%[[^/]]$%&/%' -e 's%[[^/]]*/%../%g'` |
---|
34 | PROJECT_TOPdir="${dots}${with_project_root}${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)" |
---|
35 | fi |
---|
36 | AC_SUBST(PROJECT_TOPdir) |
---|
37 | |
---|
38 | PROJECT_ROOT="${with_project_root}${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)" |
---|
39 | AC_SUBST(PROJECT_ROOT) |
---|
40 | |
---|
41 | AC_MSG_CHECKING([for RTEMS Version]) |
---|
42 | AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/cpukit/aclocal/version.m4"], |
---|
43 | [], |
---|
44 | [AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/cpukit/aclocal/version.m4])]) |
---|
45 | AC_MSG_RESULT([_RTEMS_VERSION]) |
---|
46 | ])dnl |
---|
Note: See
TracBrowser
for help on using the repository browser.