Changeset 85a8933 in rtems


Ignore:
Timestamp:
08/11/02 02:59:39 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a78c319
Parents:
4db904ec
Message:

2002-08-11 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add BSP_SUBDIRS.
  • Makefile.am: Use BSP_SUBDIRS to setup SUBDIRS.
Location:
c/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/ChangeLog

    r4db904ec r85a8933  
     12002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * configure.ac: Add BSP_SUBDIRS.
     4        * Makefile.am: Use BSP_SUBDIRS to setup SUBDIRS.
     5
    162002-08-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • c/src/Makefile.am

    r4db904ec r85a8933  
    55ACLOCAL_AMFLAGS = -I ../../aclocal
    66
    7 SUBDIRS = @exec@ @subdirs@ wrapup
     7SUBDIRS = @BSP_SUBDIRS@
    88
    99clean-local:
  • c/src/configure.ac

    r4db904ec r85a8933  
    7070  [--with-project-root="../../" --enable-rtemsbsp=$RTEMS_BSP
    7171  ])
    72   AC_SUBST([exec],[exec])
     72  BSP_SUBDIRS="exec"
    7373])
    7474
    7575## Note: the order of the directories below is essential
    7676AC_CONFIG_SUBDIRS([make])
     77BSP_SUBDIRS="$BSP_SUBDIRS make"
    7778AC_CONFIG_SUBDIRS([optman])
     79BSP_SUBDIRS="$BSP_SUBDIRS optman"
    7880AC_CONFIG_SUBDIRS([lib/libcpu])
     81BSP_SUBDIRS="$BSP_SUBDIRS lib/libcpu"
    7982AC_CONFIG_SUBDIRS([lib/libbsp])
     83BSP_SUBDIRS="$BSP_SUBDIRS lib/libbsp"
    8084AC_CONFIG_SUBDIRS([libmisc])
     85BSP_SUBDIRS="$BSP_SUBDIRS libmisc"
    8186
    8287AS_IF([test "$RTEMS_CPU" != "unix"],[
    8388## HACK: Suppress libchip for unix
    8489  AC_CONFIG_SUBDIRS([libchip])
     90  BSP_SUBDIRS="$BSP_SUBDIRS libchip"
    8591])
    8692
    8793AS_IF([test "$HAS_NETWORKING" = "yes"],[
    8894  AC_CONFIG_SUBDIRS(libnetworking)
     95  BSP_SUBDIRS="$BSP_SUBDIRS libnetworking"
    8996  AS_IF([test "$RTEMS_HAS_RDBG" = "yes"],[
    9097    RTEMS_CHECK_RDBG(RTEMS_BSP)
     
    94101AS_IF([test "$HAS_RDBG" = "yes"],[
    95102  AC_CONFIG_SUBDIRS([librdbg])
     103  BSP_SUBDIRS="$BSP_SUBDIRS librdbg"
    96104])
    97105
    98106AS_IF([test "$RTEMS_HAS_CPLUSPLUS" = "yes"],[
    99107  AC_CONFIG_SUBDIRS([librtems++])
     108  BSP_SUBDIRS="$BSP_SUBDIRS librtems++"
    100109])
    101110
     111BSP_SUBDIRS="$BSP_SUBDIRS wrapup"
    102112AC_CONFIG_SUBDIRS([tests])
     113BSP_SUBDIRS="$BSP_SUBDIRS tests"
     114
     115AC_SUBST([BSP_SUBDIRS],[$BSP_SUBDIRS])
    103116
    104117AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
Note: See TracChangeset for help on using the changeset viewer.