Changeset fc40d5d4 in rtems
- Timestamp:
- 10/11/01 16:38:05 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b7232e6f
- Parents:
- a768168
- Location:
- c/src/lib/libbsp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/ChangeLog
ra768168 rfc40d5d4 1 2001-10-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Use @subdirs@ instead of RTEMS_LIBBSP_CPU_SUBDIR. 4 * configure.in: AC_PREREQ(2.52), apply RTEMS_CPU_SUBDIRS, remove 5 RTEMS_LIBBSP_CPU_SUBDIR. 6 1 7 2001-09-28 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/lib/libbsp/Makefile.am
ra768168 rfc40d5d4 12 12 # into that directory. 13 13 14 SUBDIRS = include shared shmdr @ RTEMS_LIBBSP_CPU_SUBDIR@14 SUBDIRS = include shared shmdr @subdirs@ 15 15 16 16 EXTRA_DIST = MERGE.PROCEDURE bsp.am -
c/src/lib/libbsp/configure.in
ra768168 rfc40d5d4 3 3 dnl $Id$ 4 4 5 AC_PREREQ(2. 13)5 AC_PREREQ(2.52) 6 6 AC_INIT(README) 7 7 RTEMS_TOP(../../../..) … … 29 29 # The bare bsp is a special case as it is not under the RTEMS_CPU path 30 30 if test "$bspdir" = "bare" ; then 31 RTEMS_LIBBSP_CPU_SUBDIR="bare"31 AC_CONFIG_SUBDIRS([bare]) 32 32 else 33 RTEMS_ LIBBSP_CPU_SUBDIR=$RTEMS_CPU33 RTEMS_CPU_SUBDIRS 34 34 fi 35 AC_SUBST(RTEMS_LIBBSP_CPU_SUBDIR)36 cfg_subdirs="$RTEMS_LIBBSP_CPU_SUBDIR"37 35 38 36 AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") 39 AC_CONFIG_SUBDIRS($cfg_subdirs)40 37 41 38 RTEMS_PROJECT_ROOT
Note: See TracChangeset
for help on using the changeset viewer.