source: rtems/c/src/libchip/configure.ac @ 3c55718

4.104.114.84.95
Last change on this file since 3c55718 was 3c55718, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/11/03 at 09:06:13

Merger from rtems-4-6-branch.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-libchip],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([rtc])
8RTEMS_TOP(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
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
36AS_IF([test "$host_cpu" = "sparc"],[
37  AC_DEFINE_UNQUOTED([CPU_U32_FIX],[1],
38    [whether to enable ipalignment work-around])
39])
40
41AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes")
42
43# Explicitly list all Makefiles here
44AC_CONFIG_FILES([Makefile
45network/Makefile
46rtc/Makefile
47serial/Makefile
48ide/Makefile
49])
50AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.