source: rtems/configure.in @ 713b2ea

4.104.114.84.95
Last change on this file since 713b2ea was eb02f47, checked in by Joel Sherrill <joel.sherrill@…>, on 11/10/99 at 13:48:27

Committed modifications from ITRON Task and Task Dependendent Synchronization
Working Group. Included are tests.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1
2dnl Process this file with autoconf to produce a configure script.
3dnl
4dnl  $Id$
5
6AC_PREREQ(2.13)
7AC_INIT(c)
8RTEMS_TOP(.)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14dnl RTEMS_ENABLE_BARE
15dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp)
16
17dnl These option are only in here to let --help report all supported
18dnl options.
19RTEMS_ENABLE_MULTIPROCESSING
20RTEMS_ENABLE_POSIX
21RTEMS_ENABLE_ITRON
22RTEMS_ENABLE_NETWORKING
23RTEMS_ENABLE_RDBG
24RTEMS_ENABLE_INLINES
25RTEMS_ENABLE_CXX
26RTEMS_ENABLE_GCC28
27RTEMS_ENABLE_LIBCDIR
28RTEMS_ENABLE_TESTS
29RTEMS_ENABLE_HWAPI
30
31RTEMS_CHECK_CPU
32RTEMS_CANONICAL_HOST
33
34RTEMS_CHECK_POSIX_API(RTEMS_BSP)
35RTEMS_CHECK_ITRON_API(RTEMS_BSP)
36RTEMS_CHECK_NETWORKING(RTEMS_BSP)
37RTEMS_CHECK_RDBG
38
39AC_CONFIG_SUBDIRS(tools/build)
40AC_CONFIG_SUBDIRS(tools/update)
41AC_CONFIG_SUBDIRS(tools/cpu)
42
43# List all subdirectories to be compiled for the target here
44RTEMS_CONFIG_SUBDIRS(c)
45
46if test "$target_alias" != "$host_alias"; then
47changequote(,)dnl
48TARGET_SUBDIRS=`echo "$target_subdirs" | \
49 sed -e "s%\([^ ]\+\)%$target_alias/\1%g"`
50changequote([,])dnl
51else
52TARGET_SUBDIRS="$target_subdirs"
53fi
54AC_SUBST(TARGET_SUBDIRS)
55
56AC_OUTPUT(
57Makefile
58tools/Makefile
59make/Makefile
60make/custom/Makefile
61make/Templates/Makefile
62make/compilers/Makefile
63doc/Makefile)
64
65RTEMS_OUTPUT_SUBDIRS(RTEMS_TGT_SUBDIRS)
Note: See TracBrowser for help on using the repository browser.