source: rtems/c/src/lib/configure.in @ f2442183

4.104.114.84.95
Last change on this file since f2442183 was 9c48256, checked in by Joel Sherrill <joel.sherrill@…>, on 09/06/00 at 13:24:26

2000-09-04 Ralf Corsepius <corsepiu@…>

  • configure.in: Cleanup comments.
  • Property mode set to 100644
File size: 921 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(libc)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-lib,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_NETWORKING
15RTEMS_ENABLE_BARE
16
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROJECT_ROOT
23
24RTEMS_PROG_CC_FOR_TARGET
25RTEMS_CANONICALIZE_TOOLS
26RTEMS_CHECK_NEWLIB
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
29RTEMS_CHECK_NETWORKING(RTEMS_BSP)
30
31AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
32AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes")
33AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
34
35AC_CONFIG_SUBDIRS($cfg_subdirs)
36
37# Explicitly list all Makefiles here
38AC_OUTPUT(
39Makefile
40include/Makefile
41include/sys/Makefile
42include/motorola/Makefile
43include/zilog/Makefile
44libc/Makefile)
Note: See TracBrowser for help on using the repository browser.