From d7aecdc8f866b978a4349b0e157f46877f60e414 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 12 Oct 2001 18:47:00 +0000 Subject: 2001-10-11 Ralf Corsepius * .cvsignore: Add autom4te.cache for autoconf > 2.52. * configure.in: Remove. --- c/src/lib/libbsp/configure.ac | 50 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 c/src/lib/libbsp/configure.ac (limited to 'c/src/lib/libbsp/configure.ac') diff --git a/c/src/lib/libbsp/configure.ac b/c/src/lib/libbsp/configure.ac new file mode 100644 index 0000000000..cb7d984d38 --- /dev/null +++ b/c/src/lib/libbsp/configure.ac @@ -0,0 +1,50 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([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 + AC_CONFIG_SUBDIRS([bare]) +else + RTEMS_CPU_SUBDIRS +fi + +AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") + +RTEMS_PROJECT_ROOT + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +shmdr/Makefile +shared/Makefile +shared/include/Makefile +include/Makefile +include/rtems/Makefile +include/rtems/score/Makefile +]) +AC_OUTPUT -- cgit v1.2.3