Changeset 4a2faa7c in rtems


Ignore:
Timestamp:
10/24/00 22:06:58 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a0756c9a
Parents:
7ec7cf7
Message:

2000-10-24 Ralf Corsepius <corsepiu@…>

  • Makefile.am, acinclude.m4, configure.in: Introduce GNU canonicalization to libfs/. The approach is currently a bit of a hack as GNU canonicalization does not support the per-BSP build some of the other directories require. As more of the tree is converted, this will become less of an issue.
Location:
c/src
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/ChangeLog

    r7ec7cf7 r4a2faa7c  
     12000-10-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am, acinclude.m4, configure.in: Introduce GNU
     4        canonicalization to libfs/.
     5        The approach is currently a bit of a hack as GNU canonicalization
     6        does not support the per-BSP build some of the other directories
     7        require.  As more of the tree is converted, this will become less
     8        of an issue.
     9
    1102000-10-18      Joel Sherrill <joel@OARcorp.com>
    211
  • c/src/Makefile.am

    r7ec7cf7 r4a2faa7c  
    66ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
    77
    8 SUBDIRS = @cfg_subdirs@ wrapup tests
     8SUBDIRS = @cfg_subdirs@ @hst_subdirs@ @cfg_subdirs2@ wrapup tests
    99
    1010rtems_bspdir = $(prefix)/@RTEMS_BSP@
  • c/src/configure.in

    r7ec7cf7 r4a2faa7c  
    2727## Note: the order of the directories below is essential
    2828cfg_subdirs="make"
     29
    2930## Exclude exec from building if multilibs are enabled
    3031if test x"$multilib" = x"no"; then
     
    3334cfg_subdirs="$cfg_subdirs lib"
    3435cfg_subdirs="$cfg_subdirs lib/libcpu lib/libbsp"
    35 cfg_subdirs="$cfg_subdirs libfs libmisc"
     36hst_subdirs="libfs"
     37cfg_subdirs2="libmisc"
    3638
    3739if test "$RTEMS_CPU" != "unix"; then
    3840## HACK: Suppress libchip for unix
    39 cfg_subdirs="$cfg_subdirs libchip"
     41cfg_subdirs2="$cfg_subdirs2 libchip"
    4042fi
    4143
    4244if test "$HAS_NETWORKING" = "yes"; then
    43   cfg_subdirs="$cfg_subdirs libnetworking librpc"
     45  cfg_subdirs2="$cfg_subdirs2 libnetworking librpc"
    4446  if test "$RTEMS_HAS_RDBG" = "yes"; then
    4547    RTEMS_CHECK_RDBG(RTEMS_BSP)
     
    4850
    4951if test "$HAS_RDBG" = "yes"; then
    50   cfg_subdirs="$cfg_subdirs librdbg"
     52  cfg_subdirs2="$cfg_subdirs2 librdbg"
    5153fi
    5254AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" )
     
    5456
    5557if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
    56   cfg_subdirs="$cfg_subdirs librtems++";
     58  cfg_subdirs2="$cfg_subdirs2 librtems++";
    5759fi
     60
     61RTEMS_CONFIG_HOST_SUBDIRS($hst_subdirs)
     62AC_SUBST(hst_subdirs)
    5863
    5964AC_CONFIG_SUBDIRS($cfg_subdirs)
    6065AC_SUBST(cfg_subdirs)
     66
     67AC_CONFIG_SUBDIRS($cfg_subdirs2)
     68AC_SUBST(cfg_subdirs2)
     69
    6170AC_CONFIG_SUBDIRS(tests)
    6271
     
    7180wrapup/Makefile
    7281)
     82
     83RTEMS_OUTPUT_HOST_SUBDIRS(RTEMS_HOST_SUBDIRS)
Note: See TracChangeset for help on using the changeset viewer.