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

4.104.114.84.95
Last change on this file since 2a691da was d7aecdc, checked in by Joel Sherrill <joel.sherrill@…>, on 10/12/01 at 18:47:00

2001-10-11 Ralf Corsepius <corsepiu@…>

  • .cvsignore: Add autom4te.cache for autoconf > 2.52.
  • configure.in: Remove.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-unix-posix,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_CXX
16
17RTEMS_ENV_RTEMSBSP
18RTEMS_CANONICAL_HOST
19
20RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
21
22if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
23  RTEMS_PROG_CXX_FOR_TARGET
24fi
25
26RTEMS_CANONICALIZE_TOOLS
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
29RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
30
31RTEMS_CHECK_CXX
32
33RTEMS_CONFIG_BUILD_SUBDIRS(tools)
34AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
35
36AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
37
38AM_CONFIG_HEADER(include/bspopts.h)
39RTEMS_PROJECT_ROOT
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile
43clock/Makefile
44console/Makefile
45include/Makefile
46shmsupp/Makefile
47startup/Makefile
48timer/Makefile
49wrapup/Makefile])
50AC_OUTPUT
51
52RTEMS_OUTPUT_BUILD_SUBDIRS(RTEMS_BUILD_SUBDIRS)
Note: See TracBrowser for help on using the repository browser.