source: rtems/c/src/libchip/configure.in @ 6a9db57

4.104.114.84.95
Last change on this file since 6a9db57 was 7ed4416, checked in by Joel Sherrill <joel.sherrill@…>, on 05/08/01 at 22:59:02

2001-05-07 Ralf Corsepius <corsepiu@…>

  • configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
  • Property mode set to 100644
File size: 870 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(rtc)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-libchip,$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_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_NETWORKING(RTEMS_BSP)
29
30# pick up all the Makefiles in required parts of the tree
31if test "$RTEMS_CPU" = "unix"; then
32## HACK: Suppress libchip for unix
33AC_MSG_ERROR(Can't build libchip for $RTEMS_CPU)
34fi
35
36AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes")
37
38# Explicitly list all Makefiles here
39AC_OUTPUT(
40Makefile
41network/Makefile
42rtc/Makefile
43serial/Makefile
44)
Note: See TracBrowser for help on using the repository browser.