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
RevLine 
[eb299afc]1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
[f724a870]6AC_INIT(exec)
[eb299afc]7RTEMS_TOP(../..)
8AC_CONFIG_AUX_DIR(../..)
9
[e1d8abb]10RTEMS_ENABLE_CXX
[b62a92c]11RTEMS_ENABLE_NETWORKING
[e1d8abb]12
[eb299afc]13RTEMS_CANONICAL_TARGET_CPU
[b62a92c]14RTEMS_CANONICAL_HOST
[eb299afc]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
[b62a92c]23RTEMS_CHECK_NETWORKING(RTEMS_BSP)
24
[e1d8abb]25## Note: the order of the directories below is essential
[eb299afc]26AC_CONFIG_SUBDIRS(make)
27AC_CONFIG_SUBDIRS(exec)
28AC_CONFIG_SUBDIRS(lib)
[b62a92c]29if test "$HAS_NETWORKING" = "yes"; then
[cc63e08]30cfg_subdirs="libnetworking librpc"
[b62a92c]31fi
[e1d8abb]32if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
[b62a92c]33cfg_subdirs="$cfg_subdirs librtems++";
[e1d8abb]34fi
35AC_CONFIG_SUBDIRS($cfg_subdirs)
[eb299afc]36AC_CONFIG_SUBDIRS(tests)
37
[b62a92c]38RTEMS_PROJECT_ROOT
39
[eb299afc]40AC_OUTPUT(
41Makefile
42)
Note: See TracBrowser for help on using the repository browser.