source: rtems/testsuites/aclocal/rtems-top.m4 @ 0d0528d3

4.104.114.84.95
Last change on this file since 0d0528d3 was 0d0528d3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/14/04 at 13:27:39

2004-04-14 Ralf Corsepius <ralf_corsepius@…>

  • aclocal/rtems-top.m4: Add project_top/with_project_top processing.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1dnl $Id$
2
3m4_define([RTEMS_API],[4.7])
4
5dnl
6dnl RTEMS_TOP($1)
7dnl
8dnl $1 .. relative path from this configure.in to the toplevel configure.in
9dnl
10AC_DEFUN([RTEMS_TOP],
11[dnl
12AC_REQUIRE([RTEMS_VERSIONING])
13AC_REQUIRE([AM_SET_LEADING_DOT])
14AC_CONFIG_AUX_DIR([$1])
15AC_CHECK_PROGS(MAKE, gmake make)
16AC_BEFORE([$0], [AM_INIT_AUTOMAKE])dnl
17
18AC_PREFIX_DEFAULT([/opt/rtems-][RTEMS_API])
19
20## HACK to allow gnu-make conditionals in automake-Makefiles.
21ENDIF=endif
22AC_SUBST(ENDIF)
23
24AC_SUBST([RTEMS_TOPdir],["$1"])
25
26rtems_updir=m4_if([$2],[],[],[$2/])
27
28AC_ARG_ENABLE([rtems-root],[
29AS_HELP_STRING(--enable-rtems-root,directory containing make/custom)],
30[case ${enable_rtems_root} in
31  [[\\/$]]* | ?:[[\\/]]* ) # absolute directory
32   rtems_rootdir=${enable_rtems_root}
33   RTEMS_ROOT=${enable_rtems_root}
34   ;;
35  *) # relative directory
36   rtems_rootdir=${enable_rtems_root}${rtems_updir}
37   RTEMS_ROOT=${enable_rtems_root}${rtems_updir}'$(top_builddir)'
38   ;;
39esac],[
40rtems_rootdir=${rtems_updir}
41RTEMS_ROOT=${rtems_updir}'$(top_builddir)'
42])
43AC_SUBST([RTEMS_ROOT])
44                                                                 
45AS_IF([test -n "${with_target_subdir}"],
46  [project_top="../${with_project_top}"],
47  [project_top="${with_project_top}"])
48AC_SUBST([PROJECT_TOPdir],[${project_top}${rtems_updir}'$(top_builddir)'])
49
50AC_SUBST([PROJECT_ROOT],[${with_project_root}${rtems_updir}'$(top_builddir)'])
51
52AC_SUBST([dirstamp],[\${am__leading_dot}dirstamp])
53])dnl
Note: See TracBrowser for help on using the repository browser.