source: rtems/c/src/lib/libbsp/configure.in @ 79ef2d81

4.104.114.84.95
Last change on this file since 79ef2d81 was 994202a4, checked in by Joel Sherrill <joel.sherrill@…>, on 06/16/00 at 13:00:42

Patch rtems-rc-20000615-4-cvs.diff from Ralf Corsepius
<corsepiu@…> to fix the following:

  • lib/configure.in actually is libc's configure.in, so let it depend on libc not on lib [In my Cygnus/GNU configuration scheme, lib/include and lib/libc are treated as one unit, while libcpu and libbsp are treated as separate units.]
  • Allow empty --enable-bare* flags for the bare bsp. The formerly used scheme is too strict for our multilib experiments.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(README)
7RTEMS_TOP(../../../..)
8AC_CONFIG_AUX_DIR(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_MULTIPROCESSING
15RTEMS_PROG_CC_FOR_TARGET
16RTEMS_CANONICALIZE_TOOLS
17RTEMS_ENABLE_BARE
18
19RTEMS_ENV_RTEMSBSP
20
21RTEMS_CHECK_CPU
22RTEMS_CANONICAL_HOST
23
24RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
25RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
26
27RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
28
29# Is there code where there should be for this BSP?
30# The bare bsp is a special case as it is not under the RTEMS_CPU path
31if test "$bspdir" = "bare" ; then
32  RTEMS_LIBBSP_CPU_SUBDIR="bare"
33else
34  RTEMS_LIBBSP_CPU_SUBDIR=$RTEMS_CPU
35fi
36AC_SUBST(RTEMS_LIBBSP_CPU_SUBDIR)
37cfg_subdirs="$RTEMS_LIBBSP_CPU_SUBDIR"
38
39AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
40AC_CONFIG_SUBDIRS($cfg_subdirs)
41
42RTEMS_PROJECT_ROOT
43
44# Explicitly list all Makefiles here
45AC_OUTPUT(
46Makefile
47shmdr/Makefile)
Note: See TracBrowser for help on using the repository browser.