Changeset 4a2faa7c in rtems
- Timestamp:
- 10/24/00 22:06:58 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a0756c9a
- Parents:
- 7ec7cf7
- Location:
- c/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r7ec7cf7 r4a2faa7c 1 2000-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 1 10 2000-10-18 Joel Sherrill <joel@OARcorp.com> 2 11 -
c/src/Makefile.am
r7ec7cf7 r4a2faa7c 6 6 ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal 7 7 8 SUBDIRS = @cfg_subdirs@ wrapup tests8 SUBDIRS = @cfg_subdirs@ @hst_subdirs@ @cfg_subdirs2@ wrapup tests 9 9 10 10 rtems_bspdir = $(prefix)/@RTEMS_BSP@ -
c/src/configure.in
r7ec7cf7 r4a2faa7c 27 27 ## Note: the order of the directories below is essential 28 28 cfg_subdirs="make" 29 29 30 ## Exclude exec from building if multilibs are enabled 30 31 if test x"$multilib" = x"no"; then … … 33 34 cfg_subdirs="$cfg_subdirs lib" 34 35 cfg_subdirs="$cfg_subdirs lib/libcpu lib/libbsp" 35 cfg_subdirs="$cfg_subdirs libfs libmisc" 36 hst_subdirs="libfs" 37 cfg_subdirs2="libmisc" 36 38 37 39 if test "$RTEMS_CPU" != "unix"; then 38 40 ## HACK: Suppress libchip for unix 39 cfg_subdirs ="$cfg_subdirslibchip"41 cfg_subdirs2="$cfg_subdirs2 libchip" 40 42 fi 41 43 42 44 if test "$HAS_NETWORKING" = "yes"; then 43 cfg_subdirs ="$cfg_subdirslibnetworking librpc"45 cfg_subdirs2="$cfg_subdirs2 libnetworking librpc" 44 46 if test "$RTEMS_HAS_RDBG" = "yes"; then 45 47 RTEMS_CHECK_RDBG(RTEMS_BSP) … … 48 50 49 51 if test "$HAS_RDBG" = "yes"; then 50 cfg_subdirs ="$cfg_subdirslibrdbg"52 cfg_subdirs2="$cfg_subdirs2 librdbg" 51 53 fi 52 54 AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes" ) … … 54 56 55 57 if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then 56 cfg_subdirs ="$cfg_subdirslibrtems++";58 cfg_subdirs2="$cfg_subdirs2 librtems++"; 57 59 fi 60 61 RTEMS_CONFIG_HOST_SUBDIRS($hst_subdirs) 62 AC_SUBST(hst_subdirs) 58 63 59 64 AC_CONFIG_SUBDIRS($cfg_subdirs) 60 65 AC_SUBST(cfg_subdirs) 66 67 AC_CONFIG_SUBDIRS($cfg_subdirs2) 68 AC_SUBST(cfg_subdirs2) 69 61 70 AC_CONFIG_SUBDIRS(tests) 62 71 … … 71 80 wrapup/Makefile 72 81 ) 82 83 RTEMS_OUTPUT_HOST_SUBDIRS(RTEMS_HOST_SUBDIRS)
Note: See TracChangeset
for help on using the changeset viewer.