source: rtems/c/src/lib/configure.in @ 994202a4

4.104.114.84.95
Last change on this file since 994202a4 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: 973 bytes
RevLine 
[eb299afc]1dnl Process this file with autoconf to produce a configure script.
2dnl
[3ac8e590]3dnl $Id$
[eb299afc]4
5AC_PREREQ(2.13)
[994202a4]6AC_INIT(libc)
[eb299afc]7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
[7e642ba]11AM_INIT_AUTOMAKE(rtems-c-src-lib,$RTEMS_VERSION,no)
[eb299afc]12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_MULTIPROCESSING
15RTEMS_ENABLE_NETWORKING
16RTEMS_ENABLE_BARE
17
18RTEMS_ENV_RTEMSBSP
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_PROJECT_ROOT
24
25RTEMS_PROG_CC_FOR_TARGET
26RTEMS_CANONICALIZE_TOOLS
27
28RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
[1896a650]29RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
[3a8915e]30RTEMS_CHECK_NETWORKING(RTEMS_BSP)
[eb299afc]31
32AM_CONDITIONAL(UNIX,test "$RTEMS_CPU" = "unix")
[e1d8abb]33
[eb299afc]34# find all the CPU dependent library Makefiles
[e1d8abb]35AC_CONFIG_SUBDIRS(libcpu)
36AC_CONFIG_SUBDIRS(libbsp)
[eb299afc]37
[e1d8abb]38AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
39
40AC_CONFIG_SUBDIRS($cfg_subdirs)
[eb299afc]41
[70810dc]42# Explicitly list all Makefiles here
[eb299afc]43AC_OUTPUT(
44Makefile
45include/Makefile
[e1d8abb]46include/sys/Makefile
47include/motorola/Makefile
48include/zilog/Makefile
[ce18601a]49libc/Makefile)
Note: See TracBrowser for help on using the repository browser.