2001-10-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: Use @subdirs@ instead of RTEMS_LIBBSP_CPU_SUBDIR.
	* configure.in: AC_PREREQ(2.52), apply RTEMS_CPU_SUBDIRS, remove
	RTEMS_LIBBSP_CPU_SUBDIR.
This commit is contained in:
Joel Sherrill
2001-10-11 16:38:05 +00:00
parent a7681683d0
commit fc40d5d4a8
3 changed files with 10 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
2001-10-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use @subdirs@ instead of RTEMS_LIBBSP_CPU_SUBDIR.
* configure.in: AC_PREREQ(2.52), apply RTEMS_CPU_SUBDIRS, remove
RTEMS_LIBBSP_CPU_SUBDIR.
2001-09-28 Joel Sherrill <joel@OARcorp.com>
* shared/bootcard.c, shared/main.c: Now call int c_rtems_main()

View File

@@ -11,7 +11,7 @@ ACLOCAL_AMFLAGS = -I ../../../../aclocal
# level as the CPUs. If we are building the bare BSP, then descend
# into that directory.
SUBDIRS = include shared shmdr @RTEMS_LIBBSP_CPU_SUBDIR@
SUBDIRS = include shared shmdr @subdirs@
EXTRA_DIST = MERGE.PROCEDURE bsp.am

View File

@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$
AC_PREREQ(2.13)
AC_PREREQ(2.52)
AC_INIT(README)
RTEMS_TOP(../../../..)
AC_CONFIG_AUX_DIR(../../../..)
@@ -28,15 +28,12 @@ RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
# Is there code where there should be for this BSP?
# The bare bsp is a special case as it is not under the RTEMS_CPU path
if test "$bspdir" = "bare" ; then
RTEMS_LIBBSP_CPU_SUBDIR="bare"
AC_CONFIG_SUBDIRS([bare])
else
RTEMS_LIBBSP_CPU_SUBDIR=$RTEMS_CPU
RTEMS_CPU_SUBDIRS
fi
AC_SUBST(RTEMS_LIBBSP_CPU_SUBDIR)
cfg_subdirs="$RTEMS_LIBBSP_CPU_SUBDIR"
AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
AC_CONFIG_SUBDIRS($cfg_subdirs)
RTEMS_PROJECT_ROOT