source: rtems/c/src/lib/libbsp/unix/posix/configure.ac @ 2ca8c2c

4.104.114.84.95
Last change on this file since 2ca8c2c was 2ca8c2c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/15/03 at 09:59:23

2003-01-15 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add BSPOPTS (WORKSPACE_MB, HEAPSPACE_MB).
  • clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • shmsupp/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-c-src-lib-libbsp-unix-posix],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE([no-define foreign 1.6])
13RTEMS_BSP_CONFIGURE
14
15RTEMS_ENABLE_CXX
16
17
18RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
19RTEMS_PROG_CXX_FOR_TARGET
20
21RTEMS_CANONICALIZE_TOOLS
22RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
23
24RTEMS_CHECK_CXX
25
26RTEMS_CONFIG_BUILD_SUBDIRS(tools)
27AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
28
29AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
30
31## bsp-specific options
32RTEMS_BSPOPTS_SET([WORKSPACE_MB],[*],[2])
33RTEMS_BSPOPTS_HELP([WORKSPACE_MB],
34[The BSP's workspace RAM in MB.])
35
36RTEMS_BSPOPTS_SET([HEAPSPACE_MB],[*],[1])
37RTEMS_BSPOPTS_HELP([HEAPSPACE_MB],
38[The BSP's heapspace RAM in MB.])
39
40# Explicitly list all Makefiles here
41AC_CONFIG_FILES([Makefile
42clock/Makefile
43console/Makefile
44include/Makefile
45shmsupp/Makefile
46startup/Makefile
47timer/Makefile
48wrapup/Makefile])
49AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.