Changeset 9322194 in rtems


Ignore:
Timestamp:
09/06/00 15:29:57 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4e41273
Parents:
e6c3378
Message:

2000-09-06 Ralf Corsepius <corsepiu@…>

  • aclocal/project-root.m4: Introduce PROJECT_TOPdir, add comments.
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    re6c3378 r9322194  
     12000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * aclocal/project-root.m4: Introduce PROJECT_TOPdir, add comments.
     4
    152000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    26
  • aclocal/project-root.m4

    re6c3378 r9322194  
    22dnl $Id$
    33dnl
     4
     5dnl
     6dnl PROJECT_TOPdir     .. relative path to the top of the build-tree
     7dnl PROJECT_ROOT       .. relative path to the top of the temporary
     8dnl                       installation directory inside the build-tree
     9dnl RTEMS_TOPdir       .. relative path of a subpackage's configure.in to the
     10dnl                       toplevel configure.in of the source-tree
     11dnl RTEMS_ROOT         .. path to the top of a bsp's build directory
     12dnl                       [Applied by custom/*.cfg, depredicated otherwise]
     13dnl
    414
    515AC_DEFUN(RTEMS_PROJECT_ROOT,
     
    717AC_REQUIRE([RTEMS_TOP])
    818if test "$TARGET_SUBDIR" = "." ; then
    9 PROJECT_ROOT=$RTEMS_TOPdir/'$(top_builddir)';
     19# Native
     20PROJECT_TOPdir=${RTEMS_TOPdir}/'$(top_builddir)'
     21PROJECT_ROOT=${RTEMS_TOPdir}/'$(top_builddir)';
    1022else
    11 PROJECT_ROOT=../$RTEMS_TOPdir/'$(top_builddir)'
     23# FIXME: Moving the build-tree
     24# PROJECT_TOPdir=../${RTEMS_TOPdir}/'$(top_builddir)'
     25# PROJECT_ROOT=${RTEMS_TOPdir}/'$(top_builddir)'
     26
     27# FIXME: Old, per-bsp building style
     28PROJECT_TOPdir=../${RTEMS_TOPdir}/'$(top_builddir)'
     29PROJECT_ROOT=../${RTEMS_TOPdir}/'$(top_builddir)'
    1230fi
    1331AC_SUBST(PROJECT_ROOT)
     32AC_SUBST(PROJECT_TOPdir)
    1433
     34# FIXME: This should not be here
    1535RTEMS_ROOT=$RTEMS_TOPdir/'$(top_builddir)'/c/$RTEMS_BSP
    1636AC_SUBST(RTEMS_ROOT)
    1737
    18 PACKHEX="\$(PROJECT_ROOT)/tools/build/packhex"
     38PACKHEX="\$(PROJECT_TOPdir)/tools/build/packhex"
    1939AC_SUBST(PACKHEX)
    2040
Note: See TracChangeset for help on using the changeset viewer.