source: rtems/c/src/exec/itron/configure.in @ f42b726

4.104.114.84.95
Last change on this file since f42b726 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(include/itronsys)
7RTEMS_TOP(../../../..)
8AC_CONFIG_AUX_DIR(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-exec-itron,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_ITRON
16RTEMS_ENABLE_INLINES
17
18RTEMS_ENV_RTEMSCPU
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_PROJECT_ROOT
24
25RTEMS_PROG_CC_FOR_TARGET
26RTEMS_CANONICALIZE_TOOLS
27
28RTEMS_CHECK_ITRON_API(RTEMS_BSP)
29
30# If RTEMS macros are enabled, then use them.  Otherwise, use inlines.
31if test "$RTEMS_USE_MACROS" = "yes"; then
32  INLINEdir="macros"
33else
34  INLINEdir="inline"
35fi
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_OUTPUT(
49Makefile
50src/Makefile
51include/Makefile
52include/itronsys/Makefile
53include/rtems/Makefile
54include/rtems/itron/Makefile
55inline/Makefile
56inline/rtems/Makefile
57inline/rtems/itron/Makefile
58macros/Makefile
59macros/rtems/Makefile
60macros/rtems/itron/Makefile
61)
62
Note: See TracBrowser for help on using the repository browser.