Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to move librdbg

to its own top level package.
This commit is contained in:
Joel Sherrill
1999-10-11 15:34:26 +00:00
parent 8ab864601e
commit 45269dc902
14 changed files with 1086 additions and 140 deletions

View File

@@ -5,16 +5,12 @@
AUTOMAKE_OPTIONS = foreign 1.4
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
if HAS_RDBG
LIBRDBG = librdbg
endif
if HAS_LIBCHIP
LIBCHIP = libchip
endif
SUBDIRS = start include libmisc libc libcpu libbsp \
$(LIBRDBG) $(LIBCHIP) $(LIBHWAPI)
$(LIBCHIP) $(LIBHWAPI)
include $(top_srcdir)/../../../automake/subdirs.am
include $(top_srcdir)/../../../automake/local.am

View File

@@ -43,18 +43,6 @@ AM_CONDITIONAL(UNIX,test "$RTEMS_CPU" = "unix")
AC_CONFIG_SUBDIRS(libcpu)
AC_CONFIG_SUBDIRS(libbsp)
# If the TCP/IP stack is enabled, then find all TCP/IP Makefiles
if test "$HAS_NETWORKING" = "yes"; then
if test "$RTEMS_HAS_RDBG" = "yes"; then
RTEMS_CHECK_RDBG(RTEMS_BSP)
fi
fi
if test "$HAS_RDBG" = "yes"; then
cfg_subdirs="$cfg_subdirs librdbg"
fi
# If the HWAPI is enabled, the find the HWAPI Makefiles
RTEMS_ENABLE_HWAPI
if test "$RTEMS_HAS_HWAPI" = "yes"; then
if test -d "${srcdir}/libhwapi"; then
@@ -77,7 +65,6 @@ fi
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
AM_CONDITIONAL(HAS_LIBCHIP,test "$RTEMS_CPU" != "unix")
AM_CONDITIONAL(HAS_RDBG,test "$HAS_RDBG" = "yes")
AC_CONFIG_SUBDIRS(libmisc)
@@ -93,8 +80,5 @@ include/Makefile
include/sys/Makefile
include/motorola/Makefile
include/zilog/Makefile
include/rdbg/Makefile
include/rdbg/i386/Makefile
include/rdbg/powerpc/Makefile
libc/Makefile
start/Makefile)

View File

@@ -22,7 +22,7 @@ all-am: $(TMPINSTALL_FILES)
debug-am: $(TMPINSTALL_FILES)
profile-am: $(TMPINSTALL_FILES)
SUBDIRS = sys motorola zilog rdbg
SUBDIRS = sys motorola zilog
include $(top_srcdir)/../../../automake/subdirs.am
include $(top_srcdir)/../../../automake/local.am