source: rtems/c/src/lib/configure.in @ 6ce466d

4.104.114.84.95
Last change on this file since 6ce466d was ab94137, checked in by Joel Sherrill <joel.sherrill@…>, on 05/07/01 at 13:18:02

2001-04-28 Ralf Corsepius <corsepiu@…>

  • configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
  • Property mode set to 100644
File size: 960 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([-ansi -fasm])
25RTEMS_CANONICALIZE_TOOLS
26
27RTEMS_CHECK_NEWLIB
28RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
29RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
30RTEMS_CHECK_NETWORKING(RTEMS_BSP)
31
32AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
33AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes")
34AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
35
36AM_CONFIG_HEADER(libc/config.h)
37
38# Explicitly list all Makefiles here
39AC_OUTPUT(
40Makefile
41include/Makefile
42include/rtems/Makefile
43include/sys/Makefile
44include/motorola/Makefile
45include/zilog/Makefile
46libc/Makefile)
Note: See TracBrowser for help on using the repository browser.