source: rtems/c/src/configure.in @ 85cb0e5

4.104.114.84.95
Last change on this file since 85cb0e5 was 45269dc, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/99 at 15:34:26

Patch from Ralf Corsepius <corsepiu@…> to move librdbg
to its own top level package.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(exec)
7RTEMS_TOP(../..)
8AC_CONFIG_AUX_DIR(../..)
9
10RTEMS_ENABLE_CXX
11RTEMS_ENABLE_NETWORKING
12RTEMS_ENABLE_RDBG
13
14RTEMS_CANONICAL_TARGET_CPU
15RTEMS_CANONICAL_HOST
16
17AM_INIT_AUTOMAKE(rtems-c-src,$RTEMS_VERSION,no)
18AM_MAINTAINER_MODE
19
20RTEMS_ENV_RTEMSBSP
21RTEMS_CHECK_CPU
22RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
23
24RTEMS_CHECK_NETWORKING(RTEMS_BSP)
25
26## Note: the order of the directories below is essential
27AC_CONFIG_SUBDIRS(make)
28AC_CONFIG_SUBDIRS(exec)
29AC_CONFIG_SUBDIRS(lib)
30
31if test "$HAS_NETWORKING" = "yes"; then
32  cfg_subdirs="libnetworking librpc"
33  if test "$RTEMS_HAS_RDBG" = "yes"; then
34    RTEMS_CHECK_RDBG(RTEMS_BSP)
35  fi
36fi
37
38if test "$HAS_RDBG" = "yes"; then
39  cfg_subdirs="$cfg_subdirs librdbg"
40fi
41
42if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
43  cfg_subdirs="$cfg_subdirs librtems++";
44fi
45
46AC_CONFIG_SUBDIRS($cfg_subdirs)
47AC_CONFIG_SUBDIRS(wrapup)
48AC_SUBST(cfg_subdirs)
49AC_CONFIG_SUBDIRS(tests)
50
51RTEMS_PROJECT_ROOT
52
53AC_OUTPUT(
54Makefile
55wrapup/Makefile
56)
Note: See TracBrowser for help on using the repository browser.