source: rtems/c/src/lib/libbsp/configure.ac @ 1348869f

Last change on this file since 1348869f was 74e2998, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/03 at 14:41:57

2003-08-11 Ralf Corsepius <corsepiu@…>

  • configure.ac: Use rtems-bugs@… as bug report email address.
  • Property mode set to 100644
File size: 958 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-lib-libbsp],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([README])
8RTEMS_TOP(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
12AM_MAINTAINER_MODE
13
14RTEMS_PROG_CC_FOR_TARGET
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_ENABLE_BARE
17
18RTEMS_ENV_RTEMSBSP
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
24RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
25
26# Is there code where there should be for this BSP?
27# The bare bsp is a special case as it is not under the RTEMS_CPU path
28if test "$RTEMS_BSP_FAMILY" = "bare" ; then
29  AC_CONFIG_SUBDIRS([bare])
30else
31  RTEMS_CPU_SUBDIRS
32fi
33
34AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
35
36RTEMS_PROJECT_ROOT
37
38# Explicitly list all Makefiles here
39AC_CONFIG_FILES([Makefile
40shmdr/Makefile
41shared/Makefile
42shared/gdbstub/Makefile
43shared/include/Makefile
44])
45AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.