source: rtems/c/src/lib/configure.in @ 7ede0e7

4.104.114.84.95
Last change on this file since 7ede0e7 was 2d5748f, checked in by Joel Sherrill <joel.sherrill@…>, on 10/26/00 at 12:59:48

2000-10-26 Ralf Corsepius <corsepiu@…>

  • configure.in: Remove bogus cfg_subdirs.
  • Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros. Switch to GNU canonicalization.
  • Property mode set to 100644
File size: 888 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
35# Explicitly list all Makefiles here
36AC_OUTPUT(
37Makefile
38include/Makefile
39include/sys/Makefile
40include/motorola/Makefile
41include/zilog/Makefile
42libc/Makefile)
Note: See TracBrowser for help on using the repository browser.