4.104.114.84.95
Last change
on this file since 14620166 was
14620166,
checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/02 at 09:17:11
|
2002-07-22 Ralf Corsepius <corsepiu@…>
- aclocal/env-rtemsbsp.m4: Remove RTEMS_BSP_SPECS, PROJECT_RELEASE.
Add project_libdir, libdir. New GCC_SPECS. Various cleanups.
- aclocal/env-rtemscpu.m4: Remove RTEMS_BSP_SPECS, PROJECT_RELEASE.
Add project_libdir, libdir. New GCC_SPECS. Various cleanups.
- aclocal/rtems-top.m4: New PROJECT_ROOT handling.
- automake/compile.am: Remove RTEMS_BSP_SPECS, LD* flags, LINK,
references to bsp_specs. Use project_libdir instead of
$(PROJECT_RELEASE)/lib.
|
-
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=${RTEMS_TOPdir}/'$(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}${RTEMS_TOPdir}/'$(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.