source: rtems/c/src/lib/libbsp/unix/posix/configure.ac @ 3e6211b

Last change on this file since 3e6211b 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: 1.0 KB
RevLine 
[d7aecdc]1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
[9b5c258]5AC_PREREQ(2.57)
[74e2998]6AC_INIT([rtems-c-src-lib-libbsp-unix-posix],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
[d7aecdc]7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
[ccd81b60]11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
[9e1ae79]12RTEMS_BSP_CONFIGURE
[d7aecdc]13
14RTEMS_ENABLE_CXX
15
16
17RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
[2595580]18RTEMS_PROG_CXX_FOR_TARGET
[d7aecdc]19
20RTEMS_CANONICALIZE_TOOLS
21RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
22
23RTEMS_CHECK_CXX
24
25RTEMS_CONFIG_BUILD_SUBDIRS(tools)
26AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
27
28AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
29
[2ca8c2c]30## bsp-specific options
31RTEMS_BSPOPTS_SET([WORKSPACE_MB],[*],[2])
32RTEMS_BSPOPTS_HELP([WORKSPACE_MB],
33[The BSP's workspace RAM in MB.])
34
35RTEMS_BSPOPTS_SET([HEAPSPACE_MB],[*],[1])
36RTEMS_BSPOPTS_HELP([HEAPSPACE_MB],
37[The BSP's heapspace RAM in MB.])
38
[d7aecdc]39# Explicitly list all Makefiles here
40AC_CONFIG_FILES([Makefile
41clock/Makefile
42console/Makefile
43include/Makefile
44shmsupp/Makefile
45startup/Makefile
46timer/Makefile
47wrapup/Makefile])
48AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.