Changeset 85a8933 in rtems
- Timestamp:
- 08/11/02 02:59:39 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a78c319
- Parents:
- 4db904ec
- Location:
- c/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r4db904ec r85a8933 1 2002-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 1 6 2002-08-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/Makefile.am
r4db904ec r85a8933 5 5 ACLOCAL_AMFLAGS = -I ../../aclocal 6 6 7 SUBDIRS = @ exec@ @subdirs@ wrapup7 SUBDIRS = @BSP_SUBDIRS@ 8 8 9 9 clean-local: -
c/src/configure.ac
r4db904ec r85a8933 70 70 [--with-project-root="../../" --enable-rtemsbsp=$RTEMS_BSP 71 71 ]) 72 AC_SUBST([exec],[exec])72 BSP_SUBDIRS="exec" 73 73 ]) 74 74 75 75 ## Note: the order of the directories below is essential 76 76 AC_CONFIG_SUBDIRS([make]) 77 BSP_SUBDIRS="$BSP_SUBDIRS make" 77 78 AC_CONFIG_SUBDIRS([optman]) 79 BSP_SUBDIRS="$BSP_SUBDIRS optman" 78 80 AC_CONFIG_SUBDIRS([lib/libcpu]) 81 BSP_SUBDIRS="$BSP_SUBDIRS lib/libcpu" 79 82 AC_CONFIG_SUBDIRS([lib/libbsp]) 83 BSP_SUBDIRS="$BSP_SUBDIRS lib/libbsp" 80 84 AC_CONFIG_SUBDIRS([libmisc]) 85 BSP_SUBDIRS="$BSP_SUBDIRS libmisc" 81 86 82 87 AS_IF([test "$RTEMS_CPU" != "unix"],[ 83 88 ## HACK: Suppress libchip for unix 84 89 AC_CONFIG_SUBDIRS([libchip]) 90 BSP_SUBDIRS="$BSP_SUBDIRS libchip" 85 91 ]) 86 92 87 93 AS_IF([test "$HAS_NETWORKING" = "yes"],[ 88 94 AC_CONFIG_SUBDIRS(libnetworking) 95 BSP_SUBDIRS="$BSP_SUBDIRS libnetworking" 89 96 AS_IF([test "$RTEMS_HAS_RDBG" = "yes"],[ 90 97 RTEMS_CHECK_RDBG(RTEMS_BSP) … … 94 101 AS_IF([test "$HAS_RDBG" = "yes"],[ 95 102 AC_CONFIG_SUBDIRS([librdbg]) 103 BSP_SUBDIRS="$BSP_SUBDIRS librdbg" 96 104 ]) 97 105 98 106 AS_IF([test "$RTEMS_HAS_CPLUSPLUS" = "yes"],[ 99 107 AC_CONFIG_SUBDIRS([librtems++]) 108 BSP_SUBDIRS="$BSP_SUBDIRS librtems++" 100 109 ]) 101 110 111 BSP_SUBDIRS="$BSP_SUBDIRS wrapup" 102 112 AC_CONFIG_SUBDIRS([tests]) 113 BSP_SUBDIRS="$BSP_SUBDIRS tests" 114 115 AC_SUBST([BSP_SUBDIRS],[$BSP_SUBDIRS]) 103 116 104 117 AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
Note: See TracChangeset
for help on using the changeset viewer.