source: rtems/c/src/configure.in @ cc63e08

4.104.114.84.95
Last change on this file since cc63e08 was cc63e08, checked in by Joel Sherrill <joel.sherrill@…>, on 10/04/99 at 18:40:53

Patch from Ralf Corsepius <corsepiu@…> to make libnetworking
a top level more independently configured package.

  • Property mode set to 100644
File size: 814 bytes
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
12
13RTEMS_CANONICAL_TARGET_CPU
14RTEMS_CANONICAL_HOST
15
16AM_INIT_AUTOMAKE(rtems-c-src,$RTEMS_VERSION,no)
17AM_MAINTAINER_MODE
18
19RTEMS_ENV_RTEMSBSP
20RTEMS_CHECK_CPU
21RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
22
23RTEMS_CHECK_NETWORKING(RTEMS_BSP)
24
25## Note: the order of the directories below is essential
26AC_CONFIG_SUBDIRS(make)
27AC_CONFIG_SUBDIRS(exec)
28AC_CONFIG_SUBDIRS(lib)
29if test "$HAS_NETWORKING" = "yes"; then
30cfg_subdirs="libnetworking librpc"
31fi
32if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
33cfg_subdirs="$cfg_subdirs librtems++";
34fi
35AC_CONFIG_SUBDIRS($cfg_subdirs)
36AC_CONFIG_SUBDIRS(tests)
37
38RTEMS_PROJECT_ROOT
39
40AC_OUTPUT(
41Makefile
42)
Note: See TracBrowser for help on using the repository browser.