source: rtems/cpukit/aclocal/env-rtemscpu.m4 @ 03cd4b61

Last change on this file since 03cd4b61 was 03cd4b61, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/11/03 at 16:28:15

2003-03-11 Ralf Corsepius <corsepiu@…>

  • aclocal/env-rtemscpu.m4: Remove RTEMS_ROOT (Unused).
  • aclocal/env-rtemsbsp.m4: Remove RTEMS_ROOT (Unused). Remove RTEMS_PROJECT_ROOT (Unused).
  • aclocal/tool-paths.m4: Delete.
  • Property mode set to 100644
File size: 651 bytes
Line 
1dnl $Id$
2
3AC_DEFUN(RTEMS_ENV_RTEMSCPU,
4[AC_REQUIRE([RTEMS_ENABLE_MULTILIB])
5
6if test x"$multilib" = x"yes"; then
7## FIXME: There is no multilib BSP
8  AS_IF([test -n "$with_multisubdir"],
9    [MULTIBUILDTOP=`echo "/$with_multisubdir" | sed 's,/[[^\\/]]*,../,g'`])
10  AC_SUBST(MULTIBUILDTOP)
11
12  AS_IF([test -n "$with_multisubdir"],
13    [MULTISUBDIR="/$with_multisubdir"])
14  AC_SUBST(MULTISUBDIR)
15
16  PROJECT_INCLUDE="\$(PROJECT_ROOT)/lib/include"
17  AC_SUBST(PROJECT_INCLUDE)
18
19  project_libdir="\$(PROJECT_ROOT)/lib"
20  AC_SUBST(project_libdir)
21
22  includedir="\${exec_prefix}/lib/include"
23  libdir="${libdir}\$(MULTISUBDIR)"
24else
25  RTEMS_ENV_RTEMSBSP
26fi
27])
Note: See TracBrowser for help on using the repository browser.