summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/ppcn_60x/configure.in
blob: 0b6351347dea7f1261d967ca80fd9f7711a39472 (plain) (tree)
























































                                                                  
dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$

AC_PREREQ(2.13)
AC_INIT(bsp_specs)
RTEMS_TOP(../../../../../..)
AC_CONFIG_AUX_DIR(../../../../../..)

RTEMS_CANONICAL_TARGET_CPU
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AM_MAINTAINER_MODE

RTEMS_ENABLE_MULTIPROCESSING
RTEMS_ENABLE_NETWORKING
RTEMS_ENABLE_LIBCDIR

RTEMS_ENV_RTEMSBSP

RTEMS_CHECK_CPU
RTEMS_CANONICAL_HOST

RTEMS_PROJECT_ROOT

dnl check target cc
RTEMS_PROG_CC_FOR_TARGET
RTEMS_CANONICALIZE_TOOLS

RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
RTEMS_CHECK_NETWORKING(RTEMS_BSP)

# find all the Makefiles for the BSPs
RTEMS_CHECK_MAKEFILE(.)

# HACK: sed out bsp-tools from makefiles
t="tools"
if test -d "$srcdir/$t"; then
  bsptools_cfgdirs="$bsptools_cfgdirs $t"
  makefiles=`echo "$makefiles" | sed -e "s%.*$t/.*Makefile%%g"`
fi

if test "$HAS_MP" = "yes"; then
:
else
  # HACK: sed out shmsupp/Makefile from makefiles
  t="shmsupp"
  makefiles=`echo "$makefiles" | sed -e "s%.*$t/.*Makefile%%g"`
fi
AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")

AC_CONFIG_SUBDIRS($bsptools_cfgdirs)

# try to explicitly list a Makefile here 
AC_OUTPUT( 
$makefiles)