source: rtems/cpukit/itron/configure.ac @ 9b353a5

4.104.114.84.95
Last change on this file since 9b353a5 was 9b353a5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/11/03 at 08:47:30

Merger from rtems-4-6-branch.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-cpukit-itron],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([include/itronsys])
8RTEMS_TOP(../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.7.2])
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_ITRON
16RTEMS_ENABLE_INLINES
17
18RTEMS_ENV_RTEMSCPU
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
24RTEMS_CANONICALIZE_TOOLS
25AC_PROG_RANLIB
26
27RTEMS_CHECK_ITRON_API
28
29# If RTEMS macros are enabled, then use them.  Otherwise, use inlines.
30if test "$RTEMS_USE_MACROS" = "yes"; then
31  INLINEdir="macros"
32else
33  INLINEdir="inline"
34fi
35AC_SUBST(INLINEdir)
36AM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" )
37AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" )
38
39## Needed when using automake for libs/rels
40RTEMS_CHECK_NEWLIB
41
42AM_CONFIG_HEADER([src/config.h])
43
44##
45## FIXME: We configure and build the macros subdirectory, too.
46## Should probably use AM_CONDITIONALs to disable them in future
47# Explicitly list all Makefiles here
48AC_CONFIG_FILES([Makefile])
49AC_OUTPUT
50
Note: See TracBrowser for help on using the repository browser.