forked from Imagelibrary/rtems
idir=/opt/tmp/opt/rtems
rdir=/opt/rtems
cd $idir
find . -type f | while read file
do
if [ ! -f ${file} ] ; then
echo ${file} missing
fi
done
This commit is contained in:
@@ -29,6 +29,11 @@ cfg_subdirs="$cfg_subdirs exec"
|
||||
cfg_subdirs="$cfg_subdirs lib"
|
||||
cfg_subdirs="$cfg_subdirs libmisc"
|
||||
|
||||
if test "$RTEMS_CPU" != "unix"; then
|
||||
## HACK: Suppress libchip for unix
|
||||
cfg_subdirs="$cfg_subdirs libchip"
|
||||
fi
|
||||
|
||||
if test "$HAS_NETWORKING" = "yes"; then
|
||||
cfg_subdirs="$cfg_subdirs libnetworking librpc"
|
||||
if test "$RTEMS_HAS_RDBG" = "yes"; then
|
||||
|
||||
@@ -5,12 +5,8 @@
|
||||
AUTOMAKE_OPTIONS = foreign 1.4
|
||||
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
|
||||
|
||||
if HAS_LIBCHIP
|
||||
LIBCHIP = libchip
|
||||
endif
|
||||
|
||||
SUBDIRS = start include libc libcpu libbsp \
|
||||
$(LIBCHIP) $(LIBHWAPI)
|
||||
$(LIBHWAPI)
|
||||
|
||||
include $(top_srcdir)/../../../automake/subdirs.am
|
||||
include $(top_srcdir)/../../../automake/local.am
|
||||
|
||||
@@ -5,12 +5,8 @@
|
||||
AUTOMAKE_OPTIONS = foreign 1.4
|
||||
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
|
||||
|
||||
if HAS_LIBCHIP
|
||||
LIBCHIP = libchip
|
||||
endif
|
||||
|
||||
SUBDIRS = start include libc libcpu libbsp \
|
||||
$(LIBCHIP) $(LIBHWAPI)
|
||||
$(LIBHWAPI)
|
||||
|
||||
include $(top_srcdir)/../../../automake/subdirs.am
|
||||
include $(top_srcdir)/../../../automake/local.am
|
||||
|
||||
@@ -58,13 +58,7 @@ RTEMS_CPU_STARTdir="$RTEMS_CPU"
|
||||
fi
|
||||
AC_SUBST(RTEMS_CPU_STARTdir)
|
||||
|
||||
if test "$RTEMS_CPU" != "unix"; then
|
||||
## HACK: Suppress libchip for unix
|
||||
cfg_subdirs="$cfg_subdirs libchip"
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
||||
AM_CONDITIONAL(HAS_LIBCHIP,test "$RTEMS_CPU" != "unix")
|
||||
|
||||
AC_CONFIG_SUBDIRS($cfg_subdirs)
|
||||
|
||||
|
||||
@@ -7,5 +7,5 @@ ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
|
||||
|
||||
SUBDIRS = rtc serial network
|
||||
|
||||
include $(top_srcdir)/../../../../automake/subdirs.am
|
||||
include $(top_srcdir)/../../../../automake/local.am
|
||||
include $(top_srcdir)/../../../automake/subdirs.am
|
||||
include $(top_srcdir)/../../../automake/local.am
|
||||
|
||||
@@ -4,11 +4,11 @@ dnl $Id$
|
||||
|
||||
AC_PREREQ(2.13)
|
||||
AC_INIT(rtc)
|
||||
RTEMS_TOP(../../../..)
|
||||
AC_CONFIG_AUX_DIR(../../../..)
|
||||
RTEMS_TOP(../../..)
|
||||
AC_CONFIG_AUX_DIR(../../..)
|
||||
|
||||
RTEMS_CANONICAL_TARGET_CPU
|
||||
AM_INIT_AUTOMAKE(rtems-c-src-lib-libchip,$RTEMS_VERSION,no)
|
||||
AM_INIT_AUTOMAKE(rtems-c-src-libchip,$RTEMS_VERSION,no)
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
RTEMS_ENABLE_NETWORKING
|
||||
|
||||
Reference in New Issue
Block a user