dnl Process this file with autoconf to produce a configure script. dnl dnl $Id$ AC_PREREQ(2.13) AC_INIT(README) RTEMS_TOP(../../../..) AC_CONFIG_AUX_DIR(../../../..) RTEMS_CANONICAL_TARGET_CPU AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp,$RTEMS_VERSION,no) AM_MAINTAINER_MODE RTEMS_PROG_CC_FOR_TARGET RTEMS_CANONICALIZE_TOOLS RTEMS_ENABLE_BARE RTEMS_ENV_RTEMSBSP RTEMS_CHECK_CPU RTEMS_CANONICAL_HOST RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir) # Is there code where there should be for this BSP? # The bare bsp is a special case as it is not under the RTEMS_CPU path if test "$bspdir" = "bare" ; then RTEMS_LIBBSP_CPU_SUBDIR="bare" else RTEMS_LIBBSP_CPU_SUBDIR=$RTEMS_CPU fi AC_SUBST(RTEMS_LIBBSP_CPU_SUBDIR) cfg_subdirs="$RTEMS_LIBBSP_CPU_SUBDIR" AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") AC_CONFIG_SUBDIRS($cfg_subdirs) RTEMS_PROJECT_ROOT # Explicitly list all Makefiles here AC_OUTPUT( Makefile shmdr/Makefile shared/Makefile shared/include/Makefile include/Makefile include/rtems/Makefile include/rtems/score/Makefile )